diff options
| author | Art Haas <ahaas@airmail.net> | 2002-11-17 18:09:56 -0800 |
|---|---|---|
| committer | David S. Miller <davem@nuts.ninka.net> | 2002-11-17 18:09:56 -0800 |
| commit | 45fd7086cc354f404860b99d4f324f47dda229c4 (patch) | |
| tree | 0e28a1dd7ccf60421b5ceef1766631a8bd4c99e1 | |
| parent | 14f7031cdbabcd2631e2fb0bd324b99cbd26c008 (diff) | |
[PATCH] C99 initializers for drivers/message/i2o/i2o_config.c
| -rw-r--r-- | drivers/message/i2o/i2o_config.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/message/i2o/i2o_config.c b/drivers/message/i2o/i2o_config.c index 27aa2219fb3a..3f4667daf624 100644 --- a/drivers/message/i2o/i2o_config.c +++ b/drivers/message/i2o/i2o_config.c @@ -904,14 +904,14 @@ static int cfg_fasync(int fd, struct file *fp, int on) static struct file_operations config_fops = { - owner: THIS_MODULE, - llseek: no_llseek, - read: cfg_read, - write: cfg_write, - ioctl: cfg_ioctl, - open: cfg_open, - release: cfg_release, - fasync: cfg_fasync, + .owner = THIS_MODULE, + .llseek = no_llseek, + .read = cfg_read, + .write = cfg_write, + .ioctl = cfg_ioctl, + .open = cfg_open, + .release = cfg_release, + .fasync = cfg_fasync, }; static struct miscdevice i2o_miscdev = { |
