diff options
author | Horst Kronstorfer <hkronsto@frequentis.com> | 2006-02-21 23:34:07 -0600 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2006-02-21 23:34:07 -0600 |
commit | ebcff3c773b42bce6182ec16485abca4e53fba97 (patch) | |
tree | d9b0babba7dd0d79ef8681ffa5180bdc949aa359 /arch/ppc/platforms/83xx | |
parent | 8b0d5514a96daab7825f481d8cd5e88a0376d659 (diff) | |
download | kernel_samsung_espresso10-ebcff3c773b42bce6182ec16485abca4e53fba97.zip kernel_samsung_espresso10-ebcff3c773b42bce6182ec16485abca4e53fba97.tar.gz kernel_samsung_espresso10-ebcff3c773b42bce6182ec16485abca4e53fba97.tar.bz2 |
ppc32: Fix BCSR_SIZE for MPC834x SYS
According to the 'MPC8349E MDS Processor Board User Manual Rev. 1.6'
the size of the BCSR mapping is 32kb.
Signed-off-by: Horst Kronstorfer <hkronsto@frequentis.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/ppc/platforms/83xx')
-rw-r--r-- | arch/ppc/platforms/83xx/mpc834x_sys.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ppc/platforms/83xx/mpc834x_sys.h b/arch/ppc/platforms/83xx/mpc834x_sys.h index aa86c22..6727bbd 100644 --- a/arch/ppc/platforms/83xx/mpc834x_sys.h +++ b/arch/ppc/platforms/83xx/mpc834x_sys.h @@ -23,7 +23,7 @@ #define VIRT_IMMRBAR ((uint)0xfe000000) #define BCSR_PHYS_ADDR ((uint)0xf8000000) -#define BCSR_SIZE ((uint)(128 * 1024)) +#define BCSR_SIZE ((uint)(32 * 1024)) #define BCSR_MISC_REG2_OFF 0x07 #define BCSR_MISC_REG2_PORESET 0x01 |