diff options
author | Michael Ellerman <michael@ellerman.id.au> | 2008-06-24 11:32:36 +1000 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2008-07-01 11:28:24 +1000 |
commit | 51c52e86694f19e84600a40f6156889feafd8ae9 (patch) | |
tree | 3a1d532ba5c210c4ad4c0d2c9eee24c23b53e677 /arch/powerpc/lib/Makefile | |
parent | b7bcda631e87eb3466d0baa9885650ba7d7ed89d (diff) | |
download | talos-op-linux-51c52e86694f19e84600a40f6156889feafd8ae9.tar.gz talos-op-linux-51c52e86694f19e84600a40f6156889feafd8ae9.zip |
powerpc: Split out do_feature_fixups() from cputable.c
The logic to patch CPU feature sections lives in cputable.c, but these days
it's used for CPU features as well as firmware features. Move it into
it's own file for neatness and as preparation for some additions.
While we're moving the code, we pull the loop body logic into a separate
routine, and remove a comment which doesn't apply anymore.
Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Acked-by: Kumar Gala <galak@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/lib/Makefile')
-rw-r--r-- | arch/powerpc/lib/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/lib/Makefile b/arch/powerpc/lib/Makefile index e7f7042b9f61..fc52771f0cdb 100644 --- a/arch/powerpc/lib/Makefile +++ b/arch/powerpc/lib/Makefile @@ -26,3 +26,4 @@ endif obj-$(CONFIG_PPC_LIB_RHEAP) += rheap.o obj-y += code-patching.o +obj-y += feature-fixups.o |