diff options
author | Joe Perches <joe@perches.com> | 2009-06-28 16:26:13 +0000 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-06-29 16:35:09 +0900 |
commit | 9a660a6e1a0ebef72cf792583777234483a40022 (patch) | |
tree | 2e330fcaad1764e223a103a810a1cb1d43d3e27a /arch/sh | |
parent | a80cad950f2a562e60db1869dd29bc007c5a4b66 (diff) | |
download | linux-3.10-9a660a6e1a0ebef72cf792583777234483a40022.tar.gz linux-3.10-9a660a6e1a0ebef72cf792583777234483a40022.tar.bz2 linux-3.10-9a660a6e1a0ebef72cf792583777234483a40022.zip |
arch/sh/boards/mach-se/7206/io.c: Remove unnecessary semicolons
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh')
-rw-r--r-- | arch/sh/boards/mach-se/7206/io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/boards/mach-se/7206/io.c b/arch/sh/boards/mach-se/7206/io.c index 9c3a33210d6..180455642a4 100644 --- a/arch/sh/boards/mach-se/7206/io.c +++ b/arch/sh/boards/mach-se/7206/io.c @@ -50,7 +50,7 @@ unsigned char se7206_inb_p(unsigned long port) unsigned short se7206_inw(unsigned long port) { - return *port2adr(port);; + return *port2adr(port); } void se7206_outb(unsigned char value, unsigned long port) |