diff options
author | Helge Deller <deller@gmx.de> | 2018-04-20 17:23:37 -0400 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2018-05-02 15:47:35 -0400 |
commit | 8d73b18079613baf75019a920ce6a1ac0dac8b5b (patch) | |
tree | fbfab6facd9145ce885cd432b427154cf4cdb51f /arch/parisc/kernel | |
parent | b819439fea305a0bfd6ca23a7994fd1a8847c0d8 (diff) |
parisc: Fix section mismatches
Fix three section mismatches:
1) Section mismatch in reference from the function ioread8() to the
function .init.text:pcibios_init_bridge()
2) Section mismatch in reference from the function free_initmem() to the
function .init.text:map_pages()
3) Section mismatch in reference from the function ccio_ioc_init() to
the function .init.text:count_parisc_driver()
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'arch/parisc/kernel')
-rw-r--r-- | arch/parisc/kernel/pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/parisc/kernel/pci.c b/arch/parisc/kernel/pci.c index 13ee3569959a..ae684ac6efb6 100644 --- a/arch/parisc/kernel/pci.c +++ b/arch/parisc/kernel/pci.c | |||
@@ -174,7 +174,7 @@ void pcibios_set_master(struct pci_dev *dev) | |||
174 | * pcibios_init_bridge() initializes cache line and default latency | 174 | * pcibios_init_bridge() initializes cache line and default latency |
175 | * for pci controllers and pci-pci bridges | 175 | * for pci controllers and pci-pci bridges |
176 | */ | 176 | */ |
177 | void __init pcibios_init_bridge(struct pci_dev *dev) | 177 | void __ref pcibios_init_bridge(struct pci_dev *dev) |
178 | { | 178 | { |
179 | unsigned short bridge_ctl, bridge_ctl_new; | 179 | unsigned short bridge_ctl, bridge_ctl_new; |
180 | 180 | ||