Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

UBI: minor comma fix

Use coma at the the last elements of structure initializer.

Daniel Stone's explanation:

Because it turns:
- .attr = foo
+ .attr = foo,
+ .bar = baz

into:
+ .bar = baz,

i.e., far less likely to screw up a merge.

Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>

+2 -2
+2 -2
drivers/mtd/ubi/cdev.c
··· 708 708 struct file_operations ubi_cdev_operations = { 709 709 .owner = THIS_MODULE, 710 710 .ioctl = ubi_cdev_ioctl, 711 - .llseek = no_llseek 711 + .llseek = no_llseek, 712 712 }; 713 713 714 714 /* UBI volume character device operations */ ··· 719 719 .llseek = vol_cdev_llseek, 720 720 .read = vol_cdev_read, 721 721 .write = vol_cdev_write, 722 - .ioctl = vol_cdev_ioctl 722 + .ioctl = vol_cdev_ioctl, 723 723 };