aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Bolle <pebolle@tiscali.nl>2013-03-13 14:59:44 -0700
committerMister Oyster <oysterized@gmail.com>2017-12-22 16:23:41 +0100
commitf88412840327dcf90f08bfd43071e12e565d13ed (patch)
tree95c67d913a956bcee6f68ebd54e3dd2cca35f016
parentf0c742f2ce3fb0f7d8bab3503e500336d1ae256b (diff)
decompressors: fix typo "POWERPC"
Commit 5dc49c75a26b ("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@tiscali.nl> Cc: Florian Fainelli <florian@openwrt.org> Cc: Lasse Collin <lasse.collin@tukaani.org> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--lib/xz/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/xz/Kconfig b/lib/xz/Kconfig
index 82a04d7ba..08837db52 100644
--- a/lib/xz/Kconfig
+++ b/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