diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2006-09-04 10:36:15 +1000 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-09-03 17:53:50 -0700 |
commit | 8f2779491abe57b8f0f27d96b6a3edd5a8775a58 (patch) | |
tree | f14b11bc85c8ab7a19db882b877f50913a9f989a | |
parent | 3fbcd940dfb6f11d016801a5e4b89cbe88ddc412 (diff) | |
download | linux-3.10-8f2779491abe57b8f0f27d96b6a3edd5a8775a58.tar.gz linux-3.10-8f2779491abe57b8f0f27d96b6a3edd5a8775a58.tar.bz2 linux-3.10-8f2779491abe57b8f0f27d96b6a3edd5a8775a58.zip |
[PATCH] powerpc: Fix typo in powermac platform functions
New sparse caught that typo which could have caused erratic hardware
behaviour on some machines if the platform functions are used by the
firmware to change bits in some FCR registers.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | arch/powerpc/platforms/powermac/pfunc_base.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/powermac/pfunc_base.c b/arch/powerpc/platforms/powermac/pfunc_base.c index 6d66359ec8c..aacfa59595d 100644 --- a/arch/powerpc/platforms/powermac/pfunc_base.c +++ b/arch/powerpc/platforms/powermac/pfunc_base.c @@ -256,7 +256,7 @@ static struct pmf_handlers macio_mmio_handlers = { .write_reg32 = macio_do_write_reg32, .read_reg32 = macio_do_read_reg32, .write_reg8 = macio_do_write_reg8, - .read_reg32 = macio_do_read_reg8, + .read_reg8 = macio_do_read_reg8, .read_reg32_msrx = macio_do_read_reg32_msrx, .read_reg8_msrx = macio_do_read_reg8_msrx, .write_reg32_slm = macio_do_write_reg32_slm, |