diff options
Diffstat (limited to 'drivers/watchdog')
| -rw-r--r-- | drivers/watchdog/ar7_wdt.c | 1 | ||||
| -rw-r--r-- | drivers/watchdog/cpwd.c | 1 | ||||
| -rw-r--r-- | drivers/watchdog/ep93xx_wdt.c | 1 | ||||
| -rw-r--r-- | drivers/watchdog/omap_wdt.c | 1 | 
4 files changed, 4 insertions, 0 deletions
diff --git a/drivers/watchdog/ar7_wdt.c b/drivers/watchdog/ar7_wdt.c index c764c52412e..b2922178359 100644 --- a/drivers/watchdog/ar7_wdt.c +++ b/drivers/watchdog/ar7_wdt.c @@ -267,6 +267,7 @@ static const struct file_operations ar7_wdt_fops = {  	.unlocked_ioctl	= ar7_wdt_ioctl,  	.open		= ar7_wdt_open,  	.release	= ar7_wdt_release, +	.llseek		= no_llseek,  };  static struct miscdevice ar7_wdt_miscdev = { diff --git a/drivers/watchdog/cpwd.c b/drivers/watchdog/cpwd.c index b7d96e6236a..eca855a55c0 100644 --- a/drivers/watchdog/cpwd.c +++ b/drivers/watchdog/cpwd.c @@ -525,6 +525,7 @@ static const struct file_operations cpwd_fops = {  	.write =		cpwd_write,  	.read =			cpwd_read,  	.release =		cpwd_release, +	.llseek =		no_llseek,  };  static int __devinit cpwd_probe(struct platform_device *op, diff --git a/drivers/watchdog/ep93xx_wdt.c b/drivers/watchdog/ep93xx_wdt.c index 59359c9a5e0..726b7df61fd 100644 --- a/drivers/watchdog/ep93xx_wdt.c +++ b/drivers/watchdog/ep93xx_wdt.c @@ -188,6 +188,7 @@ static const struct file_operations ep93xx_wdt_fops = {  	.unlocked_ioctl	= ep93xx_wdt_ioctl,  	.open		= ep93xx_wdt_open,  	.release	= ep93xx_wdt_release, +	.llseek		= no_llseek,  };  static struct miscdevice ep93xx_wdt_miscdev = { diff --git a/drivers/watchdog/omap_wdt.c b/drivers/watchdog/omap_wdt.c index 76b58abf445..81e3d610089 100644 --- a/drivers/watchdog/omap_wdt.c +++ b/drivers/watchdog/omap_wdt.c @@ -258,6 +258,7 @@ static const struct file_operations omap_wdt_fops = {  	.unlocked_ioctl = omap_wdt_ioctl,  	.open = omap_wdt_open,  	.release = omap_wdt_release, +	.llseek = no_llseek,  };  static int __devinit omap_wdt_probe(struct platform_device *pdev)  |