[PATCH] powerpc: Fix typo in powermac platform functions
From: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Date: 2006-09-04 00:36:32
From: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Date: 2006-09-04 00:36:32
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> Index: linux-work/arch/powerpc/platforms/powermac/pfunc_base.c ===================================================================
--- linux-work.orig/arch/powerpc/platforms/powermac/pfunc_base.c 2006-07-04 09:37:03.000000000 +1000
+++ linux-work/arch/powerpc/platforms/powermac/pfunc_base.c 2006-09-04 10:34:02.000000000 +1000@@ -256,7 +256,7 @@ .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,