diff options
author | Dave Liu <r63238@freescale.com> | 2008-01-10 23:05:00 +0800 |
---|---|---|
committer | Kim Phillips <kim.phillips@freescale.com> | 2008-01-10 21:20:30 -0600 |
commit | ec2638ea08a537a1bd409db873aaaa33a053ebae (patch) | |
tree | 98a366b3f79df2919602322172ce72a202ef2084 /include/mpc83xx.h | |
parent | c86ef2cd9ef81935049231fa89f36c7b793f2d4b (diff) |
mpc83xx: Fix the typo in mpc83xx.h
The SPCR about TSEC priority is wrong.
Signed-off-by: Michael Barkowski <Michael.Barkowski@freescale.com>
Signed-off-by: Joe D'Abbraccio <Joe.D'abbraccio@freescale.com>
Signed-off-by: Dave Liu <daveliu@freescale.com>
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Diffstat (limited to 'include/mpc83xx.h')
-rw-r--r-- | include/mpc83xx.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/mpc83xx.h b/include/mpc83xx.h index dba1aea4fa9..119f8b1cb74 100644 --- a/include/mpc83xx.h +++ b/include/mpc83xx.h @@ -145,10 +145,10 @@ /* SPCR bits - MPC831x and MPC837x specific */ #define SPCR_TSECDP 0x00003000 /* TSEC data priority */ #define SPCR_TSECDP_SHIFT (31-19) -#define SPCR_TSECEP 0x00000C00 /* TSEC emergency priority */ -#define SPCR_TSECEP_SHIFT (31-21) -#define SPCR_TSECBDP 0x00000300 /* TSEC buffer descriptor priority */ -#define SPCR_TSECBDP_SHIFT (31-23) +#define SPCR_TSECBDP 0x00000C00 /* TSEC buffer descriptor priority */ +#define SPCR_TSECBDP_SHIFT (31-21) +#define SPCR_TSECEP 0x00000300 /* TSEC emergency priority */ +#define SPCR_TSECEP_SHIFT (31-23) #endif /* SICRL/H - System I/O Configuration Register Low/High |