Commit ae0fecf4 authored by Dave Jones's avatar Dave Jones

[WATCHDOG] C99 struct initialisers for sc1200wdt

parent b32f4cf0
...@@ -297,18 +297,18 @@ static struct notifier_block sc1200wdt_notifier = ...@@ -297,18 +297,18 @@ static struct notifier_block sc1200wdt_notifier =
static struct file_operations sc1200wdt_fops = static struct file_operations sc1200wdt_fops =
{ {
owner: THIS_MODULE, .owner = THIS_MODULE,
write: sc1200wdt_write, .write = sc1200wdt_write,
ioctl: sc1200wdt_ioctl, .ioctl = sc1200wdt_ioctl,
open: sc1200wdt_open, .open = sc1200wdt_open,
release: sc1200wdt_release .release = sc1200wdt_release
}; };
static struct miscdevice sc1200wdt_miscdev = static struct miscdevice sc1200wdt_miscdev =
{ {
minor: WATCHDOG_MINOR, .minor = WATCHDOG_MINOR,
name: "watchdog", .name = "watchdog",
fops: &sc1200wdt_fops, .fops = &sc1200wdt_fops,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment