]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
Fix bad declaration on pci_cfgfunc_nothing
authorWolfgang Denk <wd@pollux.denx.de>
Sun, 12 Mar 2006 15:54:11 +0000 (16:54 +0100)
committerWolfgang Denk <wd@pollux.denx.de>
Sun, 12 Mar 2006 15:54:11 +0000 (16:54 +0100)
Patch by Sam Song, 19 Jun 2005

CHANGELOG
include/pci.h

index 18f01cb3713bd0cfd679d44763807bd78416ebbc..0b6da7bbd41a70b617d5c8f48486b641a73c5521 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -2,6 +2,9 @@
 Changes since U-Boot 1.1.4:
 ======================================================================
 
+* Fix bad declaration on pci_cfgfunc_nothing
+  Patch by Sam Song, 19 Jun 2005
+
 * Adjust "echo" as a default command
   Patch by Sam Song, 19 Jun 2005
 
index 8f19997559228d61b25dd84a883fd78fba635cfb..4bb2df27edade22185966adfc794f47fbc2b7fc8 100644 (file)
@@ -351,8 +351,8 @@ struct pci_config_table {
        unsigned long priv[3];
 };
 
-extern void pci_cfgfunc_nothing(struct pci_controller* hose, pci_dev_t dev,
-                               struct pci_config_table *);
+extern void pci_cfgfunc_do_nothing(struct pci_controller* hose, pci_dev_t dev,
+                                  struct pci_config_table *);
 extern void pci_cfgfunc_config_device(struct pci_controller* hose, pci_dev_t dev,
                                      struct pci_config_table *);