The patch titled CRIS: replace old-style member inits with designated inits has been added to the -mm tree. Its filename is cris-replace-old-style-member-inits-with-designated-inits.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: CRIS: replace old-style member inits with designated inits From: "Robert P. J. Day" <rpjday@xxxxxxxxxxxxxx> Replace the old-style structure member initializers with designated initializers. Signed-off-by: Robert P. J. Day <rpjday@xxxxxxxxxxxxxx> Cc: Mikael Starvik <starvik@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/cris/arch-v32/drivers/cryptocop.c | 8 ++++---- arch/cris/arch-v32/drivers/i2c.c | 8 ++++---- arch/cris/arch-v32/drivers/pcf8563.c | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff -puN arch/cris/arch-v32/drivers/cryptocop.c~cris-replace-old-style-member-inits-with-designated-inits arch/cris/arch-v32/drivers/cryptocop.c --- a/arch/cris/arch-v32/drivers/cryptocop.c~cris-replace-old-style-member-inits-with-designated-inits +++ a/arch/cris/arch-v32/drivers/cryptocop.c @@ -267,10 +267,10 @@ static void print_user_dma_lists(struct const struct file_operations cryptocop_fops = { - owner: THIS_MODULE, - open: cryptocop_open, - release: cryptocop_release, - ioctl: cryptocop_ioctl + .owner = THIS_MODULE, + .open = cryptocop_open, + .release = cryptocop_release, + .ioctl = cryptocop_ioctl }; diff -puN arch/cris/arch-v32/drivers/i2c.c~cris-replace-old-style-member-inits-with-designated-inits arch/cris/arch-v32/drivers/i2c.c --- a/arch/cris/arch-v32/drivers/i2c.c~cris-replace-old-style-member-inits-with-designated-inits +++ a/arch/cris/arch-v32/drivers/i2c.c @@ -574,10 +574,10 @@ i2c_ioctl(struct inode *inode, struct fi } static const struct file_operations i2c_fops = { - owner: THIS_MODULE, - ioctl: i2c_ioctl, - open: i2c_open, - release: i2c_release, + .owner = THIS_MODULE, + .ioctl = i2c_ioctl, + .open = i2c_open, + .release = i2c_release, }; int __init diff -puN arch/cris/arch-v32/drivers/pcf8563.c~cris-replace-old-style-member-inits-with-designated-inits arch/cris/arch-v32/drivers/pcf8563.c --- a/arch/cris/arch-v32/drivers/pcf8563.c~cris-replace-old-style-member-inits-with-designated-inits +++ a/arch/cris/arch-v32/drivers/pcf8563.c @@ -51,10 +51,10 @@ int pcf8563_open(struct inode *, struct int pcf8563_release(struct inode *, struct file *); static const struct file_operations pcf8563_fops = { - owner: THIS_MODULE, - ioctl: pcf8563_ioctl, - open: pcf8563_open, - release: pcf8563_release, + .owner = THIS_MODULE, + .ioctl = pcf8563_ioctl, + .open = pcf8563_open, + .release = pcf8563_release, }; unsigned char _ Patches currently in -mm which might be from rpjday@xxxxxxxxxxxxxx are git-arm-master.patch ppc-remove-dead-code-for-preventing-pread-and-pwrite-calls.patch git-ieee1394.patch input-delete-useless-reference-to-dead-module_parm-macro.patch git-kbuild.patch bluetooth-remove-the-redundant-non-seekable-llseek-method.patch pcmcia-delete-obsolete-pcmcia_ioctl-feature.patch scsi-fix-obvious-typo-spin_lock_irqrestore-in-gdthc.patch remove-dead-references-to-module_parm-macro.patch remove-the-deprecated-kmem_cache_t-typedef-from-slabh.patch cris-replace-old-style-member-inits-with-designated-inits.patch remove-unnecessary-includes-of-spinlockh-under-include-linux.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html