diff options
author | Wim Van Sebroeck <wim@iguana.be> | 2008-09-18 12:26:15 +0000 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2008-09-23 08:12:30 +0000 |
commit | 7275fc8c36dbad3a871f82b1f9f1f524688176ea (patch) | |
tree | a232bba6b12be48ec644ebdb0d11fb34fa020fa6 /drivers/watchdog/pnx4008_wdt.c | |
parent | edf86c9b98b5162bed64a70f9424bd2dd58a717e (diff) | |
download | blackbird-obmc-linux-7275fc8c36dbad3a871f82b1f9f1f524688176ea.tar.gz blackbird-obmc-linux-7275fc8c36dbad3a871f82b1f9f1f524688176ea.zip |
[WATCHDOG] unlocked_ioctl changes
Fix some drivers so that they use the unlocked_ioctl call.
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog/pnx4008_wdt.c')
-rw-r--r-- | drivers/watchdog/pnx4008_wdt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/watchdog/pnx4008_wdt.c b/drivers/watchdog/pnx4008_wdt.c index 0ed84162437b..6d9f3d4a9987 100644 --- a/drivers/watchdog/pnx4008_wdt.c +++ b/drivers/watchdog/pnx4008_wdt.c @@ -173,8 +173,8 @@ static const struct watchdog_info ident = { .identity = "PNX4008 Watchdog", }; -static long pnx4008_wdt_ioctl(struct inode *inode, struct file *file, - unsigned int cmd, unsigned long arg) +static long pnx4008_wdt_ioctl(struct file *file, unsigned int cmd, + unsigned long arg) { int ret = -ENOTTY; int time; |