diff options
author | Sam Ravnborg <sam@ravnborg.org> | 2008-01-21 20:22:46 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-22 01:34:30 -0500 |
commit | a1f35ba374bc421ab33e40163be2b57995b09962 (patch) | |
tree | 5df4759a6b6f93f8ec26e16738ee5c19050a8f03 /arch/sparc64/kernel/pci_sabre.c | |
parent | d384e35a25445bb60457b7dab8cffe178c6b7ecb (diff) |
[SPARC64]: Fix of section mismatch warnings.
Fix following Section mismatch warning in sparc64:
WARNING: arch/sparc64/kernel/built-in.o(.text+0x13dec): Section mismatch: reference to .devinit.text:pci_scan_one_pbm (between 'psycho_scan_bus' and 'psycho_pbm_init')
WARNING: arch/sparc64/kernel/built-in.o(.text+0x14b58): Section mismatch: reference to .devinit.text:pci_scan_one_pbm (between 'sabre_scan_bus' and 'sabre_init')
WARNING: arch/sparc64/kernel/built-in.o(.text+0x15ea4): Section mismatch: reference to .devinit.text:pci_scan_one_pbm (between 'schizo_scan_bus' and 'schizo_pbm_init')
WARNING: arch/sparc64/kernel/built-in.o(.text+0x17780): Section mismatch: reference to .devinit.text:pci_scan_one_pbm (between 'pci_sun4v_scan_bus' and 'pci_sun4v_get_head')
WARNING: arch/sparc64/kernel/built-in.o(.text+0x17d5c): Section mismatch: reference to .devinit.text:pci_scan_one_pbm (between 'pci_fire_scan_bus' and 'pci_fire_get_head')
WARNING: arch/sparc64/kernel/built-in.o(.text+0x23860): Section mismatch: reference to .devinit.text:vio_dev_release (between 'vio_create_one' and 'vio_add')
WARNING: arch/sparc64/kernel/built-in.o(.text+0x23868): Section mismatch: reference to .devinit.text:vio_dev_release (between 'vio_create_one' and 'vio_add')
The pci_* were all missing __init annotations.
For the vio.c case it was a function with a wrong annotation which was removed.
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc64/kernel/pci_sabre.c')
-rw-r--r-- | arch/sparc64/kernel/pci_sabre.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/arch/sparc64/kernel/pci_sabre.c b/arch/sparc64/kernel/pci_sabre.c index fba67c3d8809..1c5f5fa2339f 100644 --- a/arch/sparc64/kernel/pci_sabre.c +++ b/arch/sparc64/kernel/pci_sabre.c | |||
@@ -633,7 +633,7 @@ static void apb_init(struct pci_bus *sabre_bus) | |||
633 | } | 633 | } |
634 | } | 634 | } |
635 | 635 | ||
636 | static void sabre_scan_bus(struct pci_pbm_info *pbm) | 636 | static void __init sabre_scan_bus(struct pci_pbm_info *pbm) |
637 | { | 637 | { |
638 | static int once; | 638 | static int once; |
639 | 639 | ||
@@ -731,7 +731,8 @@ static int sabre_iommu_init(struct pci_pbm_info *pbm, | |||
731 | return 0; | 731 | return 0; |
732 | } | 732 | } |
733 | 733 | ||
734 | static void sabre_pbm_init(struct pci_controller_info *p, struct pci_pbm_info *pbm, struct device_node *dp) | 734 | static void __init sabre_pbm_init(struct pci_controller_info *p, |
735 | struct pci_pbm_info *pbm, struct device_node *dp) | ||
735 | { | 736 | { |
736 | pbm->name = dp->full_name; | 737 | pbm->name = dp->full_name; |
737 | printk("%s: SABRE PCI Bus Module\n", pbm->name); | 738 | printk("%s: SABRE PCI Bus Module\n", pbm->name); |
@@ -750,7 +751,7 @@ static void sabre_pbm_init(struct pci_controller_info *p, struct pci_pbm_info *p | |||
750 | pci_determine_mem_io_space(pbm); | 751 | pci_determine_mem_io_space(pbm); |
751 | } | 752 | } |
752 | 753 | ||
753 | void sabre_init(struct device_node *dp, char *model_name) | 754 | void __init sabre_init(struct device_node *dp, char *model_name) |
754 | { | 755 | { |
755 | const struct linux_prom64_registers *pr_regs; | 756 | const struct linux_prom64_registers *pr_regs; |
756 | struct pci_controller_info *p; | 757 | struct pci_controller_info *p; |