summaryrefslogtreecommitdiffstats
path: root/board/esd/ocrtc
diff options
context:
space:
mode:
authorWolfgang Denk <wd@pollux.(none)>2005-09-23 13:12:15 +0200
committerWolfgang Denk <wd@pollux.(none)>2005-09-23 13:12:15 +0200
commit9ea4b5886a3aa18bae73d0b6b311f7b93e762faa (patch)
tree910b76a2fe557c8aa7a7f053ab446b674dca5957 /board/esd/ocrtc
parent0c8721a466b5e0eca7e7fbe1007777fa82100541 (diff)
downloadblackbird-obmc-uboot-9ea4b5886a3aa18bae73d0b6b311f7b93e762faa.tar.gz
blackbird-obmc-uboot-9ea4b5886a3aa18bae73d0b6b311f7b93e762faa.zip
More cleanup: get rid or redundand #defines
Diffstat (limited to 'board/esd/ocrtc')
-rw-r--r--board/esd/ocrtc/cmd_ocrtc.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/board/esd/ocrtc/cmd_ocrtc.c b/board/esd/ocrtc/cmd_ocrtc.c
index e113d5cab6..ffbb4adddc 100644
--- a/board/esd/ocrtc/cmd_ocrtc.c
+++ b/board/esd/ocrtc/cmd_ocrtc.c
@@ -24,15 +24,12 @@
#include <common.h>
#include <command.h>
#include <pci.h>
+#include <pci_ids.h>
#include <405gp_pci.h>
#if (CONFIG_COMMANDS & CFG_CMD_BSP)
-#define AMCC_VENDOR_ID 0x1014
-#define PPC405_DEVICE_ID 0x0156
-
-
/*
* Set device number on pci board
*/
@@ -43,7 +40,7 @@ int do_setdevice(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
u32 addr;
while (bdf >= 0) {
- if ((bdf = pci_find_device(AMCC_VENDOR_ID, PPC405_DEVICE_ID, idx++)) < 0) {
+ if ((bdf = pci_find_device(PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_405GP, idx++)) < 0) {
break;
}
printf("Found device nr %d at %x!\n", idx-1, bdf);
OpenPOWER on IntegriCloud