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>
master
Stefan Roese 17 years ago
parent 94276eb0a7
commit 3048bcbf0b
  1. 2
      board/esd/ocrtc/cmd_ocrtc.c
  2. 2
      board/esd/pci405/cmd_pci405.c
  3. 2
      board/esd/pci405/pci405.c
  4. 4
      board/mpl/common/common_util.c
  5. 2
      board/mpl/common/flash.c
  6. 2
      common/usb.c
  7. 2
      cpu/ppc4xx/4xx_pci.c
  8. 6
      cpu/ppc4xx/Makefile
  9. 0
      include/asm-ppc/4xx_pci.h

@ -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)

@ -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"

@ -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"

@ -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;

@ -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

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

@ -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>

@ -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)

Loading…
Cancel
Save