diff options
author | Wolfgang Denk <wd@denx.de> | 2010-10-16 18:07:07 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-10-18 21:50:24 +0200 |
commit | ae188d48ec80d0aa5cacb2b1f3b0137a388bc776 (patch) | |
tree | 616a6373b1bc5c36d7b94a48e8737ef5d0a84070 /board | |
parent | 059e77824695f4b8ef3b6e38308fa0168433a41d (diff) | |
download | u-boot-midas-ae188d48ec80d0aa5cacb2b1f3b0137a388bc776.tar.gz u-boot-midas-ae188d48ec80d0aa5cacb2b1f3b0137a388bc776.tar.bz2 u-boot-midas-ae188d48ec80d0aa5cacb2b1f3b0137a388bc776.zip |
MPC832XEMDS: fix pci.c build warning
Doubled use of DECLARE_GLOBAL_DATA_PTR caused compile warning:
pci.c:71: warning: register used for two global register variables
Signed-off-by: Wolfgang Denk <wd@denx.de>
Cc: Kim Phillips <kim.phillips@freescale.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/freescale/mpc832xemds/pci.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/board/freescale/mpc832xemds/pci.c b/board/freescale/mpc832xemds/pci.c index 5c7901d39b..b58f734b2f 100644 --- a/board/freescale/mpc832xemds/pci.c +++ b/board/freescale/mpc832xemds/pci.c @@ -68,9 +68,6 @@ static struct pci_region pci2_regions[] = { }; #endif -DECLARE_GLOBAL_DATA_PTR; - - void pci_init_board(void) #ifdef CONFIG_PCISLAVE { |