From: Wolfgang Denk Date: Sun, 12 Mar 2006 15:54:11 +0000 (+0100) Subject: Fix bad declaration on pci_cfgfunc_nothing X-Git-Tag: LABEL_2006_04_18_1106~7^2~27 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=993a22756e3545bf11fbe267feadbfdd5b67ffa4;p=kernel%2Fu-boot.git Fix bad declaration on pci_cfgfunc_nothing Patch by Sam Song, 19 Jun 2005 --- diff --git a/CHANGELOG b/CHANGELOG index 18f01cb..0b6da7b 100644 --- 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 diff --git a/include/pci.h b/include/pci.h index 8f19997..4bb2df2 100644 --- a/include/pci.h +++ b/include/pci.h @@ -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 *);