mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 19:56:18 +00:00
[WATCHDOG 05/57] atp watchdog
Switch to unlocked_ioctl Signed-off-by: Alan Cox <alan@redhat.com> Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
This commit is contained in:
parent
fbd4714907
commit
a6be8e5ff9
1 changed files with 3 additions and 4 deletions
|
@ -212,8 +212,8 @@ static struct watchdog_info at32_wdt_info = {
|
||||||
/*
|
/*
|
||||||
* Handle commands from user-space.
|
* Handle commands from user-space.
|
||||||
*/
|
*/
|
||||||
static int at32_wdt_ioctl(struct inode *inode, struct file *file,
|
static long at32_wdt_ioctl(struct file *file,
|
||||||
unsigned int cmd, unsigned long arg)
|
unsigned int cmd, unsigned long arg)
|
||||||
{
|
{
|
||||||
int ret = -ENOTTY;
|
int ret = -ENOTTY;
|
||||||
int time;
|
int time;
|
||||||
|
@ -298,7 +298,7 @@ static ssize_t at32_wdt_write(struct file *file, const char __user *data,
|
||||||
static const struct file_operations at32_wdt_fops = {
|
static const struct file_operations at32_wdt_fops = {
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
.llseek = no_llseek,
|
.llseek = no_llseek,
|
||||||
.ioctl = at32_wdt_ioctl,
|
.unlocked_ioctl = at32_wdt_ioctl,
|
||||||
.open = at32_wdt_open,
|
.open = at32_wdt_open,
|
||||||
.release = at32_wdt_close,
|
.release = at32_wdt_close,
|
||||||
.write = at32_wdt_write,
|
.write = at32_wdt_write,
|
||||||
|
@ -391,7 +391,6 @@ static int __exit at32_wdt_remove(struct platform_device *pdev)
|
||||||
wdt = NULL;
|
wdt = NULL;
|
||||||
platform_set_drvdata(pdev, NULL);
|
platform_set_drvdata(pdev, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue