The patch titled Subject: decompressors: fix typo "POWERPC" has been added to the -mm tree. Its filename is decompressors-fix-typo-powerpc.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Paul Bolle <pebolle@xxxxxxxxxx> Subject: decompressors: fix typo "POWERPC" Commit 5dc49c75a2 ("decompressors: make the default XZ_DEC_* config match the selected architecture") added default y if POWERPC to lib/xz/Kconfig. But there is no Kconfig symbol POWERPC. The most general Kconfig symbol for the powerpc architecture is PPC. So let's use that. Signed-off-by: Paul Bolle <pebolle@xxxxxxxxxx> Cc: Florian Fainelli <florian@xxxxxxxxxxx> Cc: Lasse Collin <lasse.collin@xxxxxxxxxxx> Cc: Benjamin Herrenschmidt <benh@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/xz/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN lib/xz/Kconfig~decompressors-fix-typo-powerpc lib/xz/Kconfig --- a/lib/xz/Kconfig~decompressors-fix-typo-powerpc +++ a/lib/xz/Kconfig @@ -15,7 +15,7 @@ config XZ_DEC_X86 config XZ_DEC_POWERPC bool "PowerPC BCJ filter decoder" - default y if POWERPC + default y if PPC select XZ_DEC_BCJ config XZ_DEC_IA64 _ Patches currently in -mm which might be from pebolle@xxxxxxxxxx are origin.patch linux-next.patch decompressors-fix-typo-powerpc.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