diff options
author | Rafal Jaworowski <raj@semihalf.com> | 2007-06-22 14:58:04 +0200 |
---|---|---|
committer | Rafal Jaworowski <raj@semihalf.com> | 2007-06-22 14:58:04 +0200 |
commit | 02032e8f14751a1a751b09240a4f1cf9f8a2077f (patch) | |
tree | 991ddaf81af6904a05370be6615bffa6171d284e /include/ppc4xx.h | |
parent | 83b4cfa3d629dff0264366263c5e94d9a50ad80b (diff) | |
download | u-boot-imx-02032e8f14751a1a751b09240a4f1cf9f8a2077f.zip u-boot-imx-02032e8f14751a1a751b09240a4f1cf9f8a2077f.tar.gz u-boot-imx-02032e8f14751a1a751b09240a4f1cf9f8a2077f.tar.bz2 |
[ppc] Fix build breakage for all non-4xx PowerPC variants.
- adapt to the more generic EXCEPTION_PROLOG and CRIT_EXCEPTION macros
- minor 4xx cleanup
Diffstat (limited to 'include/ppc4xx.h')
-rw-r--r-- | include/ppc4xx.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/ppc4xx.h b/include/ppc4xx.h index 8cead66..ca241d2 100644 --- a/include/ppc4xx.h +++ b/include/ppc4xx.h @@ -22,7 +22,8 @@ #ifndef __PPC4XX_H__ #define __PPC4XX_H__ -#define _START_OFFSET 0x2100 +#define EXC_OFF_SYS_RESET 0x0100 /* System reset */ +#define _START_OFFSET (EXC_OFF_SYS_RESET + 0x2000) #if defined(CONFIG_440) #include <ppc440.h> |