mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
compat_ioctl: move WDIOC handling into wdt drivers
All watchdog drivers implement the same set of ioctl commands, and fortunately all of them are compatible between 32-bit and 64-bit architectures. Modern drivers always go through drivers/watchdog/wdt.c as an abstraction layer, but older ones implement their own file_operations on a character device for this. Move the handling from fs/compat_ioctl.c into the individual drivers. Note that most of the legacy drivers will never be used on 64-bit hardware, because they are for an old 32-bit SoC implementation, but doing them all at once is safer than trying to guess which ones do or do not need the compat_ioctl handling. Reviewed-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
This commit is contained in:
parent
314999dcbc
commit
b6dfb2477f
@ -650,6 +650,7 @@ static const struct file_operations mpc52xx_wdt_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = mpc52xx_wdt_write,
|
||||
.unlocked_ioctl = mpc52xx_wdt_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = mpc52xx_wdt_open,
|
||||
.release = mpc52xx_wdt_release,
|
||||
};
|
||||
|
@ -165,6 +165,7 @@ static const struct file_operations harddog_fops = {
|
||||
.owner = THIS_MODULE,
|
||||
.write = harddog_write,
|
||||
.unlocked_ioctl = harddog_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = harddog_open,
|
||||
.release = harddog_release,
|
||||
.llseek = no_llseek,
|
||||
|
@ -893,6 +893,7 @@ static const struct file_operations ipmi_wdog_fops = {
|
||||
.poll = ipmi_poll,
|
||||
.write = ipmi_write,
|
||||
.unlocked_ioctl = ipmi_unlocked_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = ipmi_open,
|
||||
.release = ipmi_close,
|
||||
.fasync = ipmi_fasync,
|
||||
|
@ -954,6 +954,7 @@ static const struct file_operations watchdog_fops = {
|
||||
.release = watchdog_release,
|
||||
.write = watchdog_write,
|
||||
.unlocked_ioctl = watchdog_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
};
|
||||
|
||||
|
||||
|
@ -1458,6 +1458,7 @@ static const struct file_operations watchdog_fops = {
|
||||
.release = watchdog_close,
|
||||
.write = watchdog_write,
|
||||
.unlocked_ioctl = watchdog_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
};
|
||||
|
||||
/*
|
||||
|
@ -586,6 +586,7 @@ static const struct file_operations ds1374_wdt_fops = {
|
||||
.owner = THIS_MODULE,
|
||||
.read = ds1374_wdt_read,
|
||||
.unlocked_ioctl = ds1374_wdt_unlocked_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.write = ds1374_wdt_write,
|
||||
.open = ds1374_wdt_open,
|
||||
.release = ds1374_wdt_release,
|
||||
|
@ -840,6 +840,7 @@ static const struct file_operations wdt_fops = {
|
||||
.owner = THIS_MODULE,
|
||||
.read = wdt_read,
|
||||
.unlocked_ioctl = wdt_unlocked_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.write = wdt_write,
|
||||
.open = wdt_open,
|
||||
.release = wdt_release,
|
||||
|
@ -221,6 +221,7 @@ static const struct file_operations acq_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = acq_write,
|
||||
.unlocked_ioctl = acq_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = acq_open,
|
||||
.release = acq_close,
|
||||
};
|
||||
|
@ -220,6 +220,7 @@ static const struct file_operations advwdt_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = advwdt_write,
|
||||
.unlocked_ioctl = advwdt_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = advwdt_open,
|
||||
.release = advwdt_close,
|
||||
};
|
||||
|
@ -362,6 +362,7 @@ static const struct file_operations ali_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = ali_write,
|
||||
.unlocked_ioctl = ali_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = ali_open,
|
||||
.release = ali_release,
|
||||
};
|
||||
|
@ -294,6 +294,7 @@ static const struct file_operations wdt_fops = {
|
||||
.open = fop_open,
|
||||
.release = fop_close,
|
||||
.unlocked_ioctl = fop_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
};
|
||||
|
||||
static struct miscdevice wdt_miscdev = {
|
||||
|
@ -250,6 +250,7 @@ static const struct file_operations ar7_wdt_fops = {
|
||||
.owner = THIS_MODULE,
|
||||
.write = ar7_wdt_write,
|
||||
.unlocked_ioctl = ar7_wdt_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = ar7_wdt_open,
|
||||
.release = ar7_wdt_release,
|
||||
.llseek = no_llseek,
|
||||
|
@ -213,6 +213,7 @@ static const struct file_operations at91wdt_fops = {
|
||||
.owner = THIS_MODULE,
|
||||
.llseek = no_llseek,
|
||||
.unlocked_ioctl = at91_wdt_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = at91_wdt_open,
|
||||
.release = at91_wdt_close,
|
||||
.write = at91_wdt_write,
|
||||
|
@ -234,6 +234,7 @@ static const struct file_operations ath79_wdt_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = ath79_wdt_write,
|
||||
.unlocked_ioctl = ath79_wdt_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = ath79_wdt_open,
|
||||
.release = ath79_wdt_release,
|
||||
};
|
||||
|
@ -221,6 +221,7 @@ static const struct file_operations bcm63xx_wdt_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = bcm63xx_wdt_write,
|
||||
.unlocked_ioctl = bcm63xx_wdt_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = bcm63xx_wdt_open,
|
||||
.release = bcm63xx_wdt_release,
|
||||
};
|
||||
|
@ -187,6 +187,7 @@ static const struct file_operations cpu5wdt_fops = {
|
||||
.owner = THIS_MODULE,
|
||||
.llseek = no_llseek,
|
||||
.unlocked_ioctl = cpu5wdt_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = cpu5wdt_open,
|
||||
.write = cpu5wdt_write,
|
||||
.release = cpu5wdt_release,
|
||||
|
@ -371,6 +371,7 @@ static const struct file_operations eurwdt_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = eurwdt_write,
|
||||
.unlocked_ioctl = eurwdt_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = eurwdt_open,
|
||||
.release = eurwdt_release,
|
||||
};
|
||||
|
@ -669,6 +669,7 @@ static const struct file_operations watchdog_fops = {
|
||||
.release = watchdog_release,
|
||||
.write = watchdog_write,
|
||||
.unlocked_ioctl = watchdog_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
};
|
||||
|
||||
static struct miscdevice watchdog_miscdev = {
|
||||
|
@ -248,6 +248,7 @@ static const struct file_operations gef_wdt_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = gef_wdt_write,
|
||||
.unlocked_ioctl = gef_wdt_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = gef_wdt_open,
|
||||
.release = gef_wdt_release,
|
||||
};
|
||||
|
@ -201,6 +201,7 @@ static const struct file_operations geodewdt_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = geodewdt_write,
|
||||
.unlocked_ioctl = geodewdt_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = geodewdt_open,
|
||||
.release = geodewdt_release,
|
||||
};
|
||||
|
@ -259,6 +259,7 @@ static const struct file_operations ibwdt_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = ibwdt_write,
|
||||
.unlocked_ioctl = ibwdt_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = ibwdt_open,
|
||||
.release = ibwdt_close,
|
||||
};
|
||||
|
@ -344,6 +344,7 @@ static const struct file_operations asr_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = asr_write,
|
||||
.unlocked_ioctl = asr_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = asr_open,
|
||||
.release = asr_release,
|
||||
};
|
||||
|
@ -152,6 +152,7 @@ static const struct file_operations indydog_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = indydog_write,
|
||||
.unlocked_ioctl = indydog_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = indydog_open,
|
||||
.release = indydog_release,
|
||||
};
|
||||
|
@ -412,6 +412,7 @@ static const struct file_operations intel_scu_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = intel_scu_write,
|
||||
.unlocked_ioctl = intel_scu_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = intel_scu_open,
|
||||
.release = intel_scu_release,
|
||||
};
|
||||
|
@ -202,6 +202,7 @@ static const struct file_operations iop_wdt_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = iop_wdt_write,
|
||||
.unlocked_ioctl = iop_wdt_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = iop_wdt_open,
|
||||
.release = iop_wdt_release,
|
||||
};
|
||||
|
@ -345,6 +345,7 @@ static const struct file_operations it8712f_wdt_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = it8712f_wdt_write,
|
||||
.unlocked_ioctl = it8712f_wdt_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = it8712f_wdt_open,
|
||||
.release = it8712f_wdt_release,
|
||||
};
|
||||
|
@ -163,6 +163,7 @@ static const struct file_operations ixp4xx_wdt_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = ixp4xx_wdt_write,
|
||||
.unlocked_ioctl = ixp4xx_wdt_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = ixp4xx_wdt_open,
|
||||
.release = ixp4xx_wdt_release,
|
||||
};
|
||||
|
@ -183,6 +183,7 @@ static const struct file_operations m54xx_wdt_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = m54xx_wdt_write,
|
||||
.unlocked_ioctl = m54xx_wdt_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = m54xx_wdt_open,
|
||||
.release = m54xx_wdt_release,
|
||||
};
|
||||
|
@ -361,6 +361,7 @@ static const struct file_operations zf_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = zf_write,
|
||||
.unlocked_ioctl = zf_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = zf_open,
|
||||
.release = zf_close,
|
||||
};
|
||||
|
@ -227,6 +227,7 @@ static const struct file_operations mixcomwd_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = mixcomwd_write,
|
||||
.unlocked_ioctl = mixcomwd_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = mixcomwd_open,
|
||||
.release = mixcomwd_release,
|
||||
};
|
||||
|
@ -181,6 +181,7 @@ static const struct file_operations mtx1_wdt_fops = {
|
||||
.owner = THIS_MODULE,
|
||||
.llseek = no_llseek,
|
||||
.unlocked_ioctl = mtx1_wdt_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = mtx1_wdt_open,
|
||||
.write = mtx1_wdt_write,
|
||||
.release = mtx1_wdt_release,
|
||||
|
@ -241,6 +241,7 @@ static const struct file_operations mv64x60_wdt_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = mv64x60_wdt_write,
|
||||
.unlocked_ioctl = mv64x60_wdt_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = mv64x60_wdt_open,
|
||||
.release = mv64x60_wdt_release,
|
||||
};
|
||||
|
@ -267,6 +267,7 @@ static const struct file_operations nv_tco_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = nv_tco_write,
|
||||
.unlocked_ioctl = nv_tco_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = nv_tco_open,
|
||||
.release = nv_tco_release,
|
||||
};
|
||||
|
@ -473,6 +473,7 @@ static const struct file_operations pc87413_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = pc87413_write,
|
||||
.unlocked_ioctl = pc87413_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = pc87413_open,
|
||||
.release = pc87413_release,
|
||||
};
|
||||
|
@ -752,6 +752,7 @@ static const struct file_operations pcwd_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = pcwd_write,
|
||||
.unlocked_ioctl = pcwd_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = pcwd_open,
|
||||
.release = pcwd_close,
|
||||
};
|
||||
|
@ -646,6 +646,7 @@ static const struct file_operations pcipcwd_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = pcipcwd_write,
|
||||
.unlocked_ioctl = pcipcwd_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = pcipcwd_open,
|
||||
.release = pcipcwd_release,
|
||||
};
|
||||
|
@ -550,6 +550,7 @@ static const struct file_operations usb_pcwd_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = usb_pcwd_write,
|
||||
.unlocked_ioctl = usb_pcwd_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = usb_pcwd_open,
|
||||
.release = usb_pcwd_release,
|
||||
};
|
||||
|
@ -214,6 +214,7 @@ static const struct file_operations pikawdt_fops = {
|
||||
.release = pikawdt_release,
|
||||
.write = pikawdt_write,
|
||||
.unlocked_ioctl = pikawdt_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
};
|
||||
|
||||
static struct miscdevice pikawdt_miscdev = {
|
||||
|
@ -215,6 +215,7 @@ static const struct file_operations pnx833x_wdt_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = pnx833x_wdt_write,
|
||||
.unlocked_ioctl = pnx833x_wdt_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = pnx833x_wdt_open,
|
||||
.release = pnx833x_wdt_release,
|
||||
};
|
||||
|
@ -245,6 +245,7 @@ static const struct file_operations rc32434_wdt_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = rc32434_wdt_write,
|
||||
.unlocked_ioctl = rc32434_wdt_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = rc32434_wdt_open,
|
||||
.release = rc32434_wdt_release,
|
||||
};
|
||||
|
@ -199,6 +199,7 @@ static const struct file_operations rdc321x_wdt_fops = {
|
||||
.owner = THIS_MODULE,
|
||||
.llseek = no_llseek,
|
||||
.unlocked_ioctl = rdc321x_wdt_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = rdc321x_wdt_open,
|
||||
.write = rdc321x_wdt_write,
|
||||
.release = rdc321x_wdt_release,
|
||||
|
@ -163,6 +163,7 @@ static const struct file_operations riowd_fops = {
|
||||
.owner = THIS_MODULE,
|
||||
.llseek = no_llseek,
|
||||
.unlocked_ioctl = riowd_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = riowd_open,
|
||||
.write = riowd_write,
|
||||
.release = riowd_release,
|
||||
|
@ -141,6 +141,7 @@ static const struct file_operations sa1100dog_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = sa1100dog_write,
|
||||
.unlocked_ioctl = sa1100dog_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = sa1100dog_open,
|
||||
.release = sa1100dog_release,
|
||||
};
|
||||
|
@ -237,6 +237,7 @@ static const struct file_operations sbwdog_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = sbwdog_write,
|
||||
.unlocked_ioctl = sbwdog_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = sbwdog_open,
|
||||
.release = sbwdog_release,
|
||||
};
|
||||
|
@ -280,6 +280,7 @@ static const struct file_operations wdt_fops = {
|
||||
.open = fop_open,
|
||||
.release = fop_close,
|
||||
.unlocked_ioctl = fop_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
};
|
||||
|
||||
static struct miscdevice wdt_miscdev = {
|
||||
|
@ -211,6 +211,7 @@ static const struct file_operations wdt_fops = {
|
||||
.open = fop_open,
|
||||
.release = fop_close,
|
||||
.unlocked_ioctl = fop_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
};
|
||||
|
||||
static struct miscdevice wdt_miscdev = {
|
||||
|
@ -156,6 +156,7 @@ static const struct file_operations epx_c3_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = epx_c3_write,
|
||||
.unlocked_ioctl = epx_c3_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = epx_c3_open,
|
||||
.release = epx_c3_release,
|
||||
};
|
||||
|
@ -186,6 +186,7 @@ static const struct file_operations fitpc2_wdt_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = fitpc2_wdt_write,
|
||||
.unlocked_ioctl = fitpc2_wdt_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = fitpc2_wdt_open,
|
||||
.release = fitpc2_wdt_release,
|
||||
};
|
||||
|
@ -307,6 +307,7 @@ static const struct file_operations sc1200wdt_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = sc1200wdt_write,
|
||||
.unlocked_ioctl = sc1200wdt_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = sc1200wdt_open,
|
||||
.release = sc1200wdt_release,
|
||||
};
|
||||
|
@ -336,6 +336,7 @@ static const struct file_operations wdt_fops = {
|
||||
.open = fop_open,
|
||||
.release = fop_close,
|
||||
.unlocked_ioctl = fop_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
};
|
||||
|
||||
static struct miscdevice wdt_miscdev = {
|
||||
|
@ -337,6 +337,7 @@ static const struct file_operations sch311x_wdt_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = sch311x_wdt_write,
|
||||
.unlocked_ioctl = sch311x_wdt_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = sch311x_wdt_open,
|
||||
.release = sch311x_wdt_close,
|
||||
};
|
||||
|
@ -201,6 +201,7 @@ static const struct file_operations scx200_wdt_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = scx200_wdt_write,
|
||||
.unlocked_ioctl = scx200_wdt_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = scx200_wdt_open,
|
||||
.release = scx200_wdt_release,
|
||||
};
|
||||
|
@ -505,6 +505,7 @@ static const struct file_operations wb_smsc_wdt_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = wb_smsc_wdt_write,
|
||||
.unlocked_ioctl = wb_smsc_wdt_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = wb_smsc_wdt_open,
|
||||
.release = wb_smsc_wdt_release,
|
||||
};
|
||||
|
@ -304,6 +304,7 @@ static const struct file_operations wdt_fops = {
|
||||
.open = fop_open,
|
||||
.release = fop_close,
|
||||
.unlocked_ioctl = fop_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
};
|
||||
|
||||
static struct miscdevice wdt_miscdev = {
|
||||
|
@ -446,6 +446,7 @@ static const struct file_operations wdt_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = wdt_write,
|
||||
.unlocked_ioctl = wdt_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = wdt_open,
|
||||
.release = wdt_release,
|
||||
};
|
||||
|
@ -230,6 +230,7 @@ static const struct file_operations wafwdt_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = wafwdt_write,
|
||||
.unlocked_ioctl = wafwdt_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = wafwdt_open,
|
||||
.release = wafwdt_close,
|
||||
};
|
||||
|
@ -933,6 +933,7 @@ static const struct file_operations watchdog_fops = {
|
||||
.owner = THIS_MODULE,
|
||||
.write = watchdog_write,
|
||||
.unlocked_ioctl = watchdog_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = watchdog_open,
|
||||
.release = watchdog_release,
|
||||
};
|
||||
|
@ -472,6 +472,7 @@ static const struct file_operations wdrtas_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = wdrtas_write,
|
||||
.unlocked_ioctl = wdrtas_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = wdrtas_open,
|
||||
.release = wdrtas_close,
|
||||
};
|
||||
|
@ -523,6 +523,7 @@ static const struct file_operations wdt_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = wdt_write,
|
||||
.unlocked_ioctl = wdt_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = wdt_open,
|
||||
.release = wdt_release,
|
||||
};
|
||||
|
@ -181,6 +181,7 @@ static const struct file_operations watchdog_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = watchdog_write,
|
||||
.unlocked_ioctl = watchdog_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = watchdog_open,
|
||||
.release = watchdog_release,
|
||||
};
|
||||
|
@ -422,6 +422,7 @@ static const struct file_operations wdt977_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = wdt977_write,
|
||||
.unlocked_ioctl = wdt977_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = wdt977_open,
|
||||
.release = wdt977_release,
|
||||
};
|
||||
|
@ -566,6 +566,7 @@ static const struct file_operations wdtpci_fops = {
|
||||
.llseek = no_llseek,
|
||||
.write = wdtpci_write,
|
||||
.unlocked_ioctl = wdtpci_ioctl,
|
||||
.compat_ioctl = compat_ptr_ioctl,
|
||||
.open = wdtpci_open,
|
||||
.release = wdtpci_release,
|
||||
};
|
||||
|
@ -412,17 +412,6 @@ COMPATIBLE_IOCTL(PPPIOCDISCONN)
|
||||
COMPATIBLE_IOCTL(PPPIOCATTCHAN)
|
||||
COMPATIBLE_IOCTL(PPPIOCGCHAN)
|
||||
COMPATIBLE_IOCTL(PPPIOCGL2TPSTATS)
|
||||
/* Watchdog */
|
||||
COMPATIBLE_IOCTL(WDIOC_GETSUPPORT)
|
||||
COMPATIBLE_IOCTL(WDIOC_GETSTATUS)
|
||||
COMPATIBLE_IOCTL(WDIOC_GETBOOTSTATUS)
|
||||
COMPATIBLE_IOCTL(WDIOC_GETTEMP)
|
||||
COMPATIBLE_IOCTL(WDIOC_SETOPTIONS)
|
||||
COMPATIBLE_IOCTL(WDIOC_KEEPALIVE)
|
||||
COMPATIBLE_IOCTL(WDIOC_SETTIMEOUT)
|
||||
COMPATIBLE_IOCTL(WDIOC_GETTIMEOUT)
|
||||
COMPATIBLE_IOCTL(WDIOC_SETPRETIMEOUT)
|
||||
COMPATIBLE_IOCTL(WDIOC_GETPRETIMEOUT)
|
||||
};
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user