diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2016-10-13 19:44:20 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-10-13 19:44:20 -0400 |
commit | e3799a210d794fda0fa2ae99841d30cadf76069c (patch) | |
tree | b292d7e4e740d09c8c3c86b493a34b31f4b5822a /drivers/watchdog/Makefile | |
parent | b67be92feb486f800d80d72c67fd87b47b79b18e (diff) | |
parent | 39487f6688a557ebfc69816d7e02f210bf8fb2a3 (diff) |
Merge git://www.linux-watchdog.org/linux-watchdog
Pull watchdog updates from Wim Van Sebroeck:
- a new watchdog pretimeout governor framework
- support to upload the firmware on the ziirave_wdt
- several fixes and cleanups
* git://www.linux-watchdog.org/linux-watchdog: (26 commits)
watchdog: imx2_wdt: add pretimeout function support
watchdog: softdog: implement pretimeout support
watchdog: pretimeout: add pretimeout_available_governors attribute
watchdog: pretimeout: add option to select a pretimeout governor in runtime
watchdog: pretimeout: add panic pretimeout governor
watchdog: pretimeout: add noop pretimeout governor
watchdog: add watchdog pretimeout governor framework
watchdog: hpwdt: add support for iLO5
fs: compat_ioctl: add pretimeout functions for watchdogs
watchdog: add pretimeout support to the core
watchdog: imx2_wdt: use preferred BIT macro instead of open coded values
watchdog: st_wdt: Remove support for obsolete platforms
watchdog: bindings: Remove obsolete platforms from dt doc.
watchdog: mt7621_wdt: Remove assignment of dev pointer
watchdog: rt2880_wdt: Remove assignment of dev pointer
watchdog: constify watchdog_ops structures
watchdog: tegra: constify watchdog_ops structures
watchdog: iTCO_wdt: constify iTCO_wdt_pm structure
watchdog: cadence_wdt: Fix the suspend resume
watchdog: txx9wdt: Add missing clock (un)prepare calls for CCF
...
Diffstat (limited to 'drivers/watchdog/Makefile')
-rw-r--r-- | drivers/watchdog/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/drivers/watchdog/Makefile b/drivers/watchdog/Makefile index cba00430151b..caa9f4aa492a 100644 --- a/drivers/watchdog/Makefile +++ b/drivers/watchdog/Makefile | |||
@@ -3,9 +3,15 @@ | |||
3 | # | 3 | # |
4 | 4 | ||
5 | # The WatchDog Timer Driver Core. | 5 | # The WatchDog Timer Driver Core. |
6 | watchdog-objs += watchdog_core.o watchdog_dev.o | ||
7 | obj-$(CONFIG_WATCHDOG_CORE) += watchdog.o | 6 | obj-$(CONFIG_WATCHDOG_CORE) += watchdog.o |
8 | 7 | ||
8 | watchdog-objs += watchdog_core.o watchdog_dev.o | ||
9 | |||
10 | watchdog-$(CONFIG_WATCHDOG_PRETIMEOUT_GOV) += watchdog_pretimeout.o | ||
11 | |||
12 | obj-$(CONFIG_WATCHDOG_PRETIMEOUT_GOV_NOOP) += pretimeout_noop.o | ||
13 | obj-$(CONFIG_WATCHDOG_PRETIMEOUT_GOV_PANIC) += pretimeout_panic.o | ||
14 | |||
9 | # Only one watchdog can succeed. We probe the ISA/PCI/USB based | 15 | # Only one watchdog can succeed. We probe the ISA/PCI/USB based |
10 | # watchdog-cards first, then the architecture specific watchdog | 16 | # watchdog-cards first, then the architecture specific watchdog |
11 | # drivers and then the architecture independent "softdog" driver. | 17 | # drivers and then the architecture independent "softdog" driver. |