Commit 3d500013633510cd77f8a7a809150810b75a545e
Committed by
Wolfgang Denk
1 parent
7cddabce59
Exists in
master
and in
55 other branches
mpc5xxx: add pci_mpc5xxx_init prototype to common header
Add pci_mpc5xxx_init() prototype to the header file, so board .c files do not need to add extern pci_mpc5xxx_init() declaration. Signed-off-by: Anatolij Gustschin <agust@denx.de>
Showing 1 changed file with 3 additions and 0 deletions Side-by-side Diff
include/mpc5xxx.h
... | ... | @@ -898,8 +898,11 @@ |
898 | 898 | volatile u32 snoop_window; /* XLB + 0x70 */ |
899 | 899 | }; |
900 | 900 | |
901 | +struct pci_controller; | |
902 | + | |
901 | 903 | /* function prototypes */ |
902 | 904 | void loadtask(int basetask, int tasks); |
905 | +void pci_mpc5xxx_init(struct pci_controller *); | |
903 | 906 | |
904 | 907 | #endif /* __ASSEMBLY__ */ |
905 | 908 |