Skip to content

Commit

Permalink
sh: fix build error by adding generic ioport_{map/unmap}()
Browse files Browse the repository at this point in the history
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.

Signed-off-by: Pranith Kumar <bobby.prani@gmail.com>
Reported-by: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: <stable@vger.kernel.org>	[3.16+]
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Pranith Kumar authored and Linus Torvalds committed Aug 7, 2014
1 parent d72849c commit e04aca4
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions arch/sh/include/asm/io_noioport.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit e04aca4

Please sign in to comment.