diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2008-08-04 17:56:02 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-08-04 17:12:07 -0700 |
commit | 81830061bbae282d37c9af30084a1116b6239520 (patch) | |
tree | 2409d8244feaa1aebe38a6e40fc849f881dd3f04 /drivers/watchdog/wdt_pci.c | |
parent | 9f2d1f0da766f84fdb96c9bd79ed0f97036635cb (diff) | |
download | op-kernel-dev-81830061bbae282d37c9af30084a1116b6239520.zip op-kernel-dev-81830061bbae282d37c9af30084a1116b6239520.tar.gz |
alpha: Fix breakage in wdt_pci
drivers/watchdog/wdt_pci.c: In function 'wdtpci_ctr_mode':
drivers/watchdog/wdt_pci.c:120: error: implicit declaration of function 'udelay'
{standard input}: Assembler messages:
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/watchdog/wdt_pci.c')
-rw-r--r-- | drivers/watchdog/wdt_pci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/watchdog/wdt_pci.c b/drivers/watchdog/wdt_pci.c index 078f37f..5d922fd 100644 --- a/drivers/watchdog/wdt_pci.c +++ b/drivers/watchdog/wdt_pci.c @@ -44,6 +44,7 @@ #include <linux/miscdevice.h> #include <linux/watchdog.h> #include <linux/ioport.h> +#include <linux/delay.h> #include <linux/notifier.h> #include <linux/reboot.h> #include <linux/init.h> |