powerpc/tsi108: make EXPORT_SYMBOL follow its function immediately
EXPORT_SYMBOL(foo); should immediately follow its function/variable. Signed-off-by: Jason Wang <wangborong@cdjrlc.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://lore.kernel.org/r/20211114115616.493815-1-wangborong@cdjrlc.com
This commit is contained in:
parent
e919c0b232
commit
a3bcfc182b
|
@ -51,13 +51,12 @@ phys_addr_t get_csrbase(void)
|
|||
}
|
||||
return tsi108_csr_base;
|
||||
}
|
||||
EXPORT_SYMBOL(get_csrbase);
|
||||
|
||||
u32 get_vir_csrbase(void)
|
||||
{
|
||||
return (u32) (ioremap(get_csrbase(), 0x10000));
|
||||
}
|
||||
|
||||
EXPORT_SYMBOL(get_csrbase);
|
||||
EXPORT_SYMBOL(get_vir_csrbase);
|
||||
|
||||
static int __init tsi108_eth_of_init(void)
|
||||
|
|
Loading…
Reference in New Issue