[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1407267160-15878-1-git-send-email-bobby.prani@gmail.com>
Date: Tue, 5 Aug 2014 15:32:39 -0400
From: Pranith Kumar <bobby.prani@...il.com>
To: Andrew Morton <akpm@...ux-foundation.org>,
"GitAuthor: Pranith Kumar" <bobby.prani@...il.com>,
linux-sh@...r.kernel.org (open list:SUPERH),
linux-kernel@...r.kernel.org (open list)
Cc: Tony Breeds <tony@...eyournoodle.com>,
Guenter Roeck <linux@...ck-us.net>,
Alexei Starovoitov <ast@...mgrid.com>,
Fengguang Wu <fengguang.wu@...el.com>,
Daniel Borkmann <dborkman@...hat.com>,
Magnus Damm <magnus.damm@...il.com>,
Geert Uytterhoeven <geert@...ux-m68k.org>
Subject: [PATCH RESEND 1/1] sh: Fix build error by adding generic ioport_{map/unmap}()
Resending with a bigger CC list. get_maintainer only picked up open lists.
Fix build error as reported by Geert Uytterhoeven here:
http://kisskb.ellerman.id.au/kisskb/buildresult/11607865/
The error happens when CONFIG_HAS_IOPORT_MAP=n because of which there are
missing definitions of ioport_map/unmap(). Fix this build error by adding these
prototypes.
Reported-by: Geert Uytterhoeven <geert@...ux-m68k.org>
Signed-off-by: Pranith Kumar <bobby.prani@...il.com>
---
arch/sh/include/asm/io_noioport.h | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/arch/sh/include/asm/io_noioport.h b/arch/sh/include/asm/io_noioport.h
index 4d48f14..c727e6d 100644
--- a/arch/sh/include/asm/io_noioport.h
+++ b/arch/sh/include/asm/io_noioport.h
@@ -34,6 +34,17 @@ static inline void outl(unsigned int x, unsigned long port)
BUG();
}
+static inline void __iomem *ioport_map(unsigned long port, unsigned int size)
+{
+ BUG();
+ return NULL;
+}
+
+static inline void ioport_unmap(void __iomem *addr)
+{
+ BUG();
+}
+
#define inb_p(addr) inb(addr)
#define inw_p(addr) inw(addr)
#define inl_p(addr) inl(addr)
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists