[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [PATCH v3 19/32] Mini-OS: add EXPORT_SYMBOL() instances to ioremap.c
Add the needed instances of EXPORT_SYMBOL() to ioremap.c. Signed-off-by: Juergen Gross <jgross@xxxxxxxx> --- V3: - new patch --- arch/x86/ioremap.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/arch/x86/ioremap.c b/arch/x86/ioremap.c index 4384b1c0..fda74d5d 100644 --- a/arch/x86/ioremap.c +++ b/arch/x86/ioremap.c @@ -51,11 +51,13 @@ void *ioremap(unsigned long phys_addr, unsigned long size) { return __do_ioremap(phys_addr, size, IO_PROT); } +EXPORT_SYMBOL(ioremap); void *ioremap_nocache(unsigned long phys_addr, unsigned long size) { return __do_ioremap(phys_addr, size, IO_PROT_NOCACHE); } +EXPORT_SYMBOL(ioremap_nocache); /* Un-map the io-remapped region. Currently no list of existing mappings is * maintained, so the caller has to supply the size */ @@ -69,7 +71,6 @@ void iounmap(void *virt_addr, unsigned long size) unmap_frames(va & PAGE_MASK, num_pages); } - - +EXPORT_SYMBOL(iounmap); /* -*- Mode:C; c-basic-offset:4; tab-width:4 indent-tabs-mode:nil -*- */ -- 2.35.3
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |