Commit 05ef1b79 authored by Chris Metcalf's avatar Chris Metcalf

arch/tile: fix a couple of functions that should be __init

They were marked __devinit by mistake, causing some warnings at link time.
Signed-off-by: default avatarChris Metcalf <cmetcalf@tilera.com>
parent a99cd112
...@@ -47,8 +47,8 @@ struct pci_controller { ...@@ -47,8 +47,8 @@ struct pci_controller {
*/ */
#define PCI_DMA_BUS_IS_PHYS 1 #define PCI_DMA_BUS_IS_PHYS 1
int __devinit tile_pci_init(void); int __init tile_pci_init(void);
int __devinit pcibios_init(void); int __init pcibios_init(void);
static inline void pci_iounmap(struct pci_dev *dev, void __iomem *addr) {} static inline void pci_iounmap(struct pci_dev *dev, void __iomem *addr) {}
......
...@@ -141,7 +141,7 @@ static int __devinit tile_init_irqs(int controller_id, ...@@ -141,7 +141,7 @@ static int __devinit tile_init_irqs(int controller_id,
* *
* Returns the number of controllers discovered. * Returns the number of controllers discovered.
*/ */
int __devinit tile_pci_init(void) int __init tile_pci_init(void)
{ {
int i; int i;
...@@ -287,7 +287,7 @@ static void __devinit fixup_read_and_payload_sizes(void) ...@@ -287,7 +287,7 @@ static void __devinit fixup_read_and_payload_sizes(void)
* The controllers have been set up by the time we get here, by a call to * The controllers have been set up by the time we get here, by a call to
* tile_pci_init. * tile_pci_init.
*/ */
int __devinit pcibios_init(void) int __init pcibios_init(void)
{ {
int i; int i;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment