diff options
author | Wolfgang Denk <wd@pollux.(none)> | 2005-09-23 11:05:55 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@pollux.(none)> | 2005-09-23 11:05:55 +0200 |
commit | 0c8721a466b5e0eca7e7fbe1007777fa82100541 (patch) | |
tree | 1f53decded27502be8593137739291a3de406d94 /board/esd | |
parent | a6e6cf00367c0779eadb49915e40c55f0a787957 (diff) | |
download | u-boot-0c8721a466b5e0eca7e7fbe1007777fa82100541.zip u-boot-0c8721a466b5e0eca7e7fbe1007777fa82100541.tar.gz u-boot-0c8721a466b5e0eca7e7fbe1007777fa82100541.tar.bz2 |
Cleanup (PPC4xx is AMCC now)
Diffstat (limited to 'board/esd')
-rw-r--r-- | board/esd/ocrtc/cmd_ocrtc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/board/esd/ocrtc/cmd_ocrtc.c b/board/esd/ocrtc/cmd_ocrtc.c index 881d179..e113d5c 100644 --- a/board/esd/ocrtc/cmd_ocrtc.c +++ b/board/esd/ocrtc/cmd_ocrtc.c @@ -29,8 +29,8 @@ #if (CONFIG_COMMANDS & CFG_CMD_BSP) -#define IBM_VENDOR_ID 0x1014 -#define PPC405_DEVICE_ID 0x0156 +#define AMCC_VENDOR_ID 0x1014 +#define PPC405_DEVICE_ID 0x0156 /* @@ -43,7 +43,7 @@ int do_setdevice(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) u32 addr; while (bdf >= 0) { - if ((bdf = pci_find_device(IBM_VENDOR_ID, PPC405_DEVICE_ID, idx++)) < 0) { + if ((bdf = pci_find_device(AMCC_VENDOR_ID, PPC405_DEVICE_ID, idx++)) < 0) { break; } printf("Found device nr %d at %x!\n", idx-1, bdf); |