diff options
author | wdenk <wdenk> | 2002-08-06 20:46:37 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2002-08-06 20:46:37 +0000 |
commit | 935ecca1c36f948f1d8a0db3fbcee1dc49cc3da7 (patch) | |
tree | a01f1e69d4a055c8d0560801543196a205210cd4 /include/ppc4xx.h | |
parent | 71fc6c551dc7951576f636a8594d623c0cb48938 (diff) | |
download | u-boot-imx-935ecca1c36f948f1d8a0db3fbcee1dc49cc3da7.zip u-boot-imx-935ecca1c36f948f1d8a0db3fbcee1dc49cc3da7.tar.gz u-boot-imx-935ecca1c36f948f1d8a0db3fbcee1dc49cc3da7.tar.bz2 |
Initial revision
Diffstat (limited to 'include/ppc4xx.h')
-rw-r--r-- | include/ppc4xx.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/include/ppc4xx.h b/include/ppc4xx.h new file mode 100644 index 0000000..5750902 --- /dev/null +++ b/include/ppc4xx.h @@ -0,0 +1,33 @@ +/*----------------------------------------------------------------------------+ +| +| This source code has been made available to you by IBM on an AS-IS +| basis. Anyone receiving this source is licensed under IBM +| copyrights to use it in any way he or she deems fit, including +| copying it, modifying it, compiling it, and redistributing it either +| with or without modifications. No license under IBM patents or +| patent applications is to be implied by the copyright license. +| +| Any user of this software should understand that IBM cannot provide +| technical support for this software and will not be responsible for +| any consequences resulting from the use of this software. +| +| Any person who transfers this source code or any derivative work +| must include the IBM copyright notice, this paragraph, and the +| preceding two paragraphs in the transferred software. +| +| COPYRIGHT I B M CORPORATION 1999 +| LICENSED MATERIAL - PROGRAM PROPERTY OF I B M ++----------------------------------------------------------------------------*/ + +#ifndef __PPC4XX_H__ +#define __PPC4XX_H__ + + +#if defined(CONFIG_440) +#include <ppc440.h> +#else +#include <ppc405.h> +#endif + +#endif /* __PPC4XX_H__ */ + |