Skip to content

Commit

Permalink
decompressors: fix typo "POWERPC"
Browse files Browse the repository at this point in the history
Commit 5dc49c7 ("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 <[email protected]>
Cc: Florian Fainelli <[email protected]>
Cc: Lasse Collin <[email protected]>
Cc: Benjamin Herrenschmidt <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
pebolle authored and torvalds committed Mar 13, 2013
1 parent 6d7825b commit 97da55f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/xz/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 97da55f

Please sign in to comment.