From: Dave Liu Date: Thu, 10 Jan 2008 15:05:00 +0000 (+0800) Subject: mpc83xx: Fix the typo in mpc83xx.h X-Git-Tag: v1.3.2-rc1~102^2~31^2~4 X-Git-Url: https://git.kernelconcepts.de/?a=commitdiff_plain;h=ec2638ea08a537a1bd409db873aaaa33a053ebae;p=karo-tx-uboot.git mpc83xx: Fix the typo in mpc83xx.h The SPCR about TSEC priority is wrong. Signed-off-by: Michael Barkowski Signed-off-by: Joe D'Abbraccio Signed-off-by: Dave Liu Signed-off-by: Kim Phillips --- diff --git a/include/mpc83xx.h b/include/mpc83xx.h index dba1aea4fa..119f8b1cb7 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