1
0
Fork 0

ppc4xx: Rename 405gp_pci to 4xx_pci since its used on all 4xx platforms

These files were introduced with the IBM 405GP but are currently used on all
4xx PPC platforms. So the name doesn't match the content anymore. This patch
renames the files to 4xx_pci.c/h.

Signed-off-by: Stefan Roese <sr@denx.de>
utp
Stefan Roese 2007-10-03 15:01:02 +02:00
parent 94276eb0a7
commit 3048bcbf0b
9 changed files with 11 additions and 11 deletions

View File

@ -25,7 +25,7 @@
#include <command.h>
#include <pci.h>
#include <pci_ids.h>
#include <405gp_pci.h>
#include <asm/4xx_pci.h>
#if defined(CONFIG_CMD_BSP)

View File

@ -27,7 +27,7 @@
#include <net.h>
#include <asm/io.h>
#include <pci.h>
#include <405gp_pci.h>
#include <asm/4xx_pci.h>
#include <asm/processor.h>
#include "pci405.h"

View File

@ -26,7 +26,7 @@
#include <command.h>
#include <malloc.h>
#include <pci.h>
#include <405gp_pci.h>
#include <asm/4xx_pci.h>
#include "pci405.h"

View File

@ -36,11 +36,11 @@
#ifdef CONFIG_PIP405
#include "../pip405/pip405.h"
#include <405gp_pci.h>
#include <asm/4xx_pci.h>
#endif
#ifdef CONFIG_MIP405
#include "../mip405/mip405.h"
#include <405gp_pci.h>
#include <asm/4xx_pci.h>
#endif
DECLARE_GLOBAL_DATA_PTR;

View File

@ -47,7 +47,7 @@
#if defined(CONFIG_PIP405)
#include "../pip405/pip405.h"
#endif
#include <405gp_pci.h>
#include <asm/4xx_pci.h>
#else /* defined(CONFIG_PATI) */
#include <mpc5xx.h>
#endif

View File

@ -53,7 +53,7 @@
#include <usb.h>
#ifdef CONFIG_4xx
#include <405gp_pci.h>
#include <asm/4xx_pci.h>
#endif
#undef USB_DEBUG

View File

@ -72,7 +72,7 @@
#include <common.h>
#include <command.h>
#if !defined(CONFIG_440)
#include <405gp_pci.h>
#include <asm/4xx_pci.h>
#endif
#include <asm/processor.h>
#include <pci.h>

View File

@ -27,11 +27,11 @@ LIB = $(obj)lib$(CPU).a
START = start.o resetvec.o kgdb.o
SOBJS = dcr.o
COBJS = 405gp_pci.o 4xx_pcie.o 4xx_enet.o \
COBJS = 40x_spd_sdram.o 44x_spd_ddr.o 44x_spd_ddr2.o \
4xx_pci.o 4xx_pcie.o 4xx_enet.o \
bedbug_405.o commproc.o \
cpu.o cpu_init.o gpio.o i2c.o interrupts.o \
miiphy.o ndfc.o sdram.o serial.o \
40x_spd_sdram.o 44x_spd_ddr.o 44x_spd_ddr2.o speed.o \
miiphy.o ndfc.o sdram.o serial.o speed.o \
tlb.o traps.o usb_ohci.o usb.o usbdev.o
SRCS := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)