diff options
author | Helge Deller <deller@gmx.de> | 2018-04-20 23:23:37 +0200 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2018-05-02 21:47:35 +0200 |
commit | 8d73b18079613baf75019a920ce6a1ac0dac8b5b (patch) | |
tree | fbfab6facd9145ce885cd432b427154cf4cdb51f /arch/parisc/mm | |
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/mm')
-rw-r--r-- | arch/parisc/mm/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/parisc/mm/init.c b/arch/parisc/mm/init.c index cab32ee824d2..2607d2d33405 100644 --- a/arch/parisc/mm/init.c +++ b/arch/parisc/mm/init.c @@ -516,7 +516,7 @@ static void __init map_pages(unsigned long start_vaddr, } } -void free_initmem(void) +void __ref free_initmem(void) { unsigned long init_begin = (unsigned long)__init_begin; unsigned long init_end = (unsigned long)__init_end; |