diff options
author | Jiang Liu <jiang.liu@linux.intel.com> | 2014-02-28 14:02:02 -0500 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2014-02-28 14:02:02 -0500 |
commit | f3ffaaa8b727da6c442b5b8cb356c2196b6e2d59 (patch) | |
tree | 5a7d97077bb17bb803308accd6ca1d72b1f5ec4c /arch/ia64 | |
parent | cfbf8d4857c26a8a307fb7cd258074c9dcd8c691 (diff) |
[IA64] sba_iommu: fix section mismatch
To: linux-kernel@vger.kernel.org
Fix the section mismatch warning by remove __init annotate for functions
ioc_iova_init(), ioc_init() and acpi_sba_ioc_add() because they may be called at runtime.
WARNING: vmlinux.o(.data+0x66ee0): Section mismatch in reference from the variable acpi_sba_ioc_handler to the function .init.text:acpi_sba_ioc_add()
The variable acpi_sba_ioc_handler references
the function __init acpi_sba_ioc_add()
Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/ia64')
-rw-r--r-- | arch/ia64/hp/common/sba_iommu.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/ia64/hp/common/sba_iommu.c b/arch/ia64/hp/common/sba_iommu.c index 8e858b593e4f..30c43d39dede 100644 --- a/arch/ia64/hp/common/sba_iommu.c +++ b/arch/ia64/hp/common/sba_iommu.c | |||
@@ -1596,7 +1596,7 @@ static void sba_unmap_sg_attrs(struct device *dev, struct scatterlist *sglist, | |||
1596 | * | 1596 | * |
1597 | ***************************************************************/ | 1597 | ***************************************************************/ |
1598 | 1598 | ||
1599 | static void __init | 1599 | static void |
1600 | ioc_iova_init(struct ioc *ioc) | 1600 | ioc_iova_init(struct ioc *ioc) |
1601 | { | 1601 | { |
1602 | int tcnfg; | 1602 | int tcnfg; |
@@ -1807,7 +1807,7 @@ static struct ioc_iommu ioc_iommu_info[] __initdata = { | |||
1807 | { SX2000_IOC_ID, "sx2000", NULL }, | 1807 | { SX2000_IOC_ID, "sx2000", NULL }, |
1808 | }; | 1808 | }; |
1809 | 1809 | ||
1810 | static struct ioc * __init | 1810 | static struct ioc * |
1811 | ioc_init(unsigned long hpa, void *handle) | 1811 | ioc_init(unsigned long hpa, void *handle) |
1812 | { | 1812 | { |
1813 | struct ioc *ioc; | 1813 | struct ioc *ioc; |
@@ -2041,7 +2041,7 @@ sba_map_ioc_to_node(struct ioc *ioc, acpi_handle handle) | |||
2041 | #define sba_map_ioc_to_node(ioc, handle) | 2041 | #define sba_map_ioc_to_node(ioc, handle) |
2042 | #endif | 2042 | #endif |
2043 | 2043 | ||
2044 | static int __init | 2044 | static int |
2045 | acpi_sba_ioc_add(struct acpi_device *device, | 2045 | acpi_sba_ioc_add(struct acpi_device *device, |
2046 | const struct acpi_device_id *not_used) | 2046 | const struct acpi_device_id *not_used) |
2047 | { | 2047 | { |