diff options
| author | Matthias Fuchs <matthias.fuchs@esd-electronics.com> | 2008-01-08 15:50:49 +0100 | 
|---|---|---|
| committer | Stefan Roese <sr@denx.de> | 2008-01-09 06:32:58 +0100 | 
| commit | 6e9233d30afe57cb6e148fbfa4895e7810196fac (patch) | |
| tree | f6afa585eba5a345f1639756834951a797262ef0 | |
| parent | 580d1d3186a2bc6dbdb626941b716dae1788e51e (diff) | |
| download | olio-uboot-2014.01-6e9233d30afe57cb6e148fbfa4895e7810196fac.tar.xz olio-uboot-2014.01-6e9233d30afe57cb6e148fbfa4895e7810196fac.zip | |
ppc4xx: Move cpu/ppc4xx/vecnum.h into include path
This patch allows the use of 4xx interrupt vector number defines
in board specific code outside cpu/ppc4xx.
Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
| -rw-r--r-- | cpu/ppc4xx/4xx_enet.c | 2 | ||||
| -rw-r--r-- | cpu/ppc4xx/4xx_uart.c | 2 | ||||
| -rw-r--r-- | cpu/ppc4xx/interrupts.c | 2 | ||||
| -rw-r--r-- | cpu/ppc4xx/iop480_uart.c | 2 | ||||
| -rw-r--r-- | cpu/ppc4xx/usbdev.c | 2 | ||||
| -rw-r--r-- | include/asm-ppc/ppc4xx-intvec.h (renamed from cpu/ppc4xx/vecnum.h) | 0 | 
6 files changed, 5 insertions, 5 deletions
| diff --git a/cpu/ppc4xx/4xx_enet.c b/cpu/ppc4xx/4xx_enet.c index ff707dda5..44659ffcd 100644 --- a/cpu/ppc4xx/4xx_enet.c +++ b/cpu/ppc4xx/4xx_enet.c @@ -90,7 +90,7 @@  #include <405_mal.h>  #include <miiphy.h>  #include <malloc.h> -#include "vecnum.h" +#include <asm/ppc4xx-intvec.h>  /*   * Only compile for platform with AMCC EMAC ethernet controller and diff --git a/cpu/ppc4xx/4xx_uart.c b/cpu/ppc4xx/4xx_uart.c index ac2b12b87..3d1124e0b 100644 --- a/cpu/ppc4xx/4xx_uart.c +++ b/cpu/ppc4xx/4xx_uart.c @@ -46,7 +46,7 @@  #include <asm/processor.h>  #include <asm/io.h>  #include <watchdog.h> -#include "vecnum.h" +#include <asm/ppc4xx-intvec.h>  #ifdef CONFIG_SERIAL_MULTI  #include <serial.h> diff --git a/cpu/ppc4xx/interrupts.c b/cpu/ppc4xx/interrupts.c index 2026cc927..2f3dc326b 100644 --- a/cpu/ppc4xx/interrupts.c +++ b/cpu/ppc4xx/interrupts.c @@ -34,7 +34,7 @@  #include <ppc4xx.h>  #include <ppc_asm.tmpl>  #include <commproc.h> -#include "vecnum.h" +#include <asm/ppc4xx-intvec.h>  DECLARE_GLOBAL_DATA_PTR; diff --git a/cpu/ppc4xx/iop480_uart.c b/cpu/ppc4xx/iop480_uart.c index 8dd226729..3af0767c5 100644 --- a/cpu/ppc4xx/iop480_uart.c +++ b/cpu/ppc4xx/iop480_uart.c @@ -26,7 +26,7 @@  #include <asm/processor.h>  #include <asm/io.h>  #include <watchdog.h> -#include "vecnum.h" +#include <asm/ppc4xx-intvec.h>  #ifdef CONFIG_SERIAL_MULTI  #include <serial.h> diff --git a/cpu/ppc4xx/usbdev.c b/cpu/ppc4xx/usbdev.c index 5924a6cb8..d71ba7710 100644 --- a/cpu/ppc4xx/usbdev.c +++ b/cpu/ppc4xx/usbdev.c @@ -7,7 +7,7 @@  #include <usb.h>  #include "usbdev.h" -#include "vecnum.h" +#include <asm/ppc4xx-intvec.h>  #define USB_DT_DEVICE        0x01  #define USB_DT_CONFIG        0x02 diff --git a/cpu/ppc4xx/vecnum.h b/include/asm-ppc/ppc4xx-intvec.h index 8d04b6906..8d04b6906 100644 --- a/cpu/ppc4xx/vecnum.h +++ b/include/asm-ppc/ppc4xx-intvec.h |