diff options
Diffstat (limited to 'arch/cris/arch-v32/drivers/i2c.c')
-rw-r--r-- | arch/cris/arch-v32/drivers/i2c.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/cris/arch-v32/drivers/i2c.c b/arch/cris/arch-v32/drivers/i2c.c index 5d6c52737df3..e12f6cc6f4a2 100644 --- a/arch/cris/arch-v32/drivers/i2c.c +++ b/arch/cris/arch-v32/drivers/i2c.c | |||
@@ -574,10 +574,10 @@ i2c_ioctl(struct inode *inode, struct file *file, | |||
574 | } | 574 | } |
575 | 575 | ||
576 | static const struct file_operations i2c_fops = { | 576 | static const struct file_operations i2c_fops = { |
577 | owner: THIS_MODULE, | 577 | .owner = THIS_MODULE, |
578 | ioctl: i2c_ioctl, | 578 | .ioctl = i2c_ioctl, |
579 | open: i2c_open, | 579 | .open = i2c_open, |
580 | release: i2c_release, | 580 | .release = i2c_release, |
581 | }; | 581 | }; |
582 | 582 | ||
583 | int __init | 583 | int __init |