diff options
author | Helge Deller <deller@gmx.de> | 2018-04-21 00:23:37 +0300 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2018-05-02 22:47:35 +0300 |
commit | 8d73b18079613baf75019a920ce6a1ac0dac8b5b (patch) | |
tree | fbfab6facd9145ce885cd432b427154cf4cdb51f /drivers | |
parent | b819439fea305a0bfd6ca23a7994fd1a8847c0d8 (diff) | |
download | linux-8d73b18079613baf75019a920ce6a1ac0dac8b5b.tar.xz |
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 'drivers')
-rw-r--r-- | drivers/parisc/ccio-dma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/parisc/ccio-dma.c b/drivers/parisc/ccio-dma.c index acba1f56af3e..126cf19e869b 100644 --- a/drivers/parisc/ccio-dma.c +++ b/drivers/parisc/ccio-dma.c @@ -1263,7 +1263,7 @@ static struct parisc_driver ccio_driver __refdata = { * I/O Page Directory, the resource map, and initalizing the * U2/Uturn chip into virtual mode. */ -static void +static void __init ccio_ioc_init(struct ioc *ioc) { int i; |