da9062-wdt.txt 497 B

1234567891011121314151617181920212223
  1. * Dialog Semiconductor DA9062/61 Watchdog Timer
  2. Required properties:
  3. - compatible: should be one of the following valid compatible string lines:
  4. "dlg,da9061-watchdog", "dlg,da9062-watchdog"
  5. "dlg,da9062-watchdog"
  6. Example: DA9062
  7. pmic0: da9062@58 {
  8. watchdog {
  9. compatible = "dlg,da9062-watchdog";
  10. };
  11. };
  12. Example: DA9061 using a fall-back compatible for the DA9062 watchdog driver
  13. pmic0: da9061@58 {
  14. watchdog {
  15. compatible = "dlg,da9061-watchdog", "dlg,da9062-watchdog";
  16. };
  17. };