The patch titled Subject: drivers/leds/leds-lp3952.c: work around gcc-4.4.4 union initializer bug has been removed from the -mm tree. Its filename was drivers-leds-leds-lp3952c-work-around-gcc-444-union-initializer-bug.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: drivers/leds/leds-lp3952.c: work around gcc-4.4.4 union initializer bug drivers/leds/leds-lp3952.c: In function 'lp3952_set_pattern_gen_cmd': drivers/leds/leds-lp3952.c:156: error: unknown field 'r' specified in initializer drivers/leds/leds-lp3952.c:156: warning: missing braces around initializer drivers/leds/leds-lp3952.c:156: warning: (near initialization for 'line.<anonymous>') drivers/leds/leds-lp3952.c:157: error: unknown field 'g' specified in initializer drivers/leds/leds-lp3952.c:157: warning: excess elements in struct initializer drivers/leds/leds-lp3952.c:157: warning: (near initialization for 'line') drivers/leds/leds-lp3952.c:158: error: unknown field 'b' specified in initializer drivers/leds/leds-lp3952.c:158: warning: excess elements in struct initializer drivers/leds/leds-lp3952.c:158: warning: (near initialization for 'line') drivers/leds/leds-lp3952.c:159: error: unknown field 'cet' specified in initializer drivers/leds/leds-lp3952.c:159: warning: excess elements in struct initializer drivers/leds/leds-lp3952.c:159: warning: (near initialization for 'line') drivers/leds/leds-lp3952.c:160: error: unknown field 'tt' specified in initializer drivers/leds/leds-lp3952.c:161: warning: excess elements in struct initializer drivers/leds/leds-lp3952.c:161: warning: (near initialization for 'line') Fixes: 1574a45ad7467d6a8c6 ("leds: LED driver for TI LP3952 6-Channel Color LED") Tested-by: Tony Makkiel <tony.makkiel@xxxxxxxxx> Cc: Mika Westerberg <mika.westerberg@xxxxxxxxxxxxxxx> Cc: Jacek Anaszewski <j.anaszewski@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/leds/leds-lp3952.c | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff -puN drivers/leds/leds-lp3952.c~drivers-leds-leds-lp3952c-work-around-gcc-444-union-initializer-bug drivers/leds/leds-lp3952.c --- a/drivers/leds/leds-lp3952.c~drivers-leds-leds-lp3952c-work-around-gcc-444-union-initializer-bug +++ a/drivers/leds/leds-lp3952.c @@ -153,11 +153,15 @@ static int lp3952_set_pattern_gen_cmd(st { int ret; struct ptrn_gen_cmd line = { - .r = r, - .g = g, - .b = b, - .cet = cet, - .tt = tt + { + { + .tt = tt, + .b = b, + .cet = cet, + .g = g, + .r = r, + }, + }, }; if (cmd_index >= LP3952_CMD_REG_COUNT) _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are i-need-old-gcc.patch arch-alpha-kernel-systblss-remove-debug-check.patch arm-arch-arm-include-asm-pageh-needs-personalityh.patch ocfs2-improve-recovery-performance-v2-fix.patch ocfs2-dlm-disable-bug_on-when-dlm_lock_res_dropping_ref-is-cleared-before-dlm_deref_lockres_done_handler-fix.patch mm.patch mm-reorganize-slab-freelist-randomization-fix.patch mm-balloon-use-general-non-lru-movable-page-feature-fix.patch mm-compaction-split-freepages-without-holding-the-zone-lock-fix-2.patch mm-frontswap-convert-frontswap_enabled-to-static-key-checkpatch-fixes.patch mm-add-nr_zsmalloc-to-vmstat-fix.patch mm-memcg-use-consistent-gfp-flags-during-readahead-checkpatch-fixes.patch mm-thp-make-swapin-readahead-under-down_read-of-mmap_sem-fix-2-fix.patch mm-fix-build-warnings-in-linux-compactionh-fix.patch mm-update-the-comment-in-__isolate_free_page-checkpatch-fixes.patch treewide-replace-obsolete-_refok-by-__ref-checkpatch-fixes.patch printk-create-pr_level-functions-fix.patch printk-add-kernel-parameter-to-control-writes-to-dev-kmsg-checkpatch-fixes.patch kexec-ensure-user-memory-sizes-do-not-wrap-fix.patch kexec-allow-architectures-to-override-boot-mapping-fix.patch allow-kdump-with-crash_kexec_post_notifiers-fix.patch linux-next-rejects.patch drivers-net-wireless-intel-iwlwifi-dvm-calibc-fix-min-warning.patch kernel-trace-bpf_tracec-work-around-gcc-444-anon-union-initialization-bug.patch bitmap-bitmap_equal-memcmp-optimization-fix.patch kernel-forkc-export-kernel_thread-to-modules.patch slab-leaks3-default-y.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