summaryrefslogtreecommitdiff
path: root/src/device/oprom/x86emu/sys.c
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2016-08-21 18:21:59 +0200
committerMartin Roth <martinroth@google.com>2016-08-28 18:26:52 +0200
commita1ac10fc8518938035c8384163bb05257513f0e6 (patch)
tree9c4db5937b2b31a6152eee7ca8db2b5299c1e841 /src/device/oprom/x86emu/sys.c
parent70d79a454676b551f3bc2059217179e31905ee5c (diff)
downloadcoreboot-a1ac10fc8518938035c8384163bb05257513f0e6.tar.xz
src/device: Remove unnecessary whitespace before newline
Change-Id: I3536a99a1a6fd2bc7b10777654c1937b92e8eacd Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/16288 Tested-by: build bot (Jenkins) Reviewed-by: Omar Pakker
Diffstat (limited to 'src/device/oprom/x86emu/sys.c')
-rw-r--r--src/device/oprom/x86emu/sys.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/device/oprom/x86emu/sys.c b/src/device/oprom/x86emu/sys.c
index e550c459d2..afb7efbe5c 100644
--- a/src/device/oprom/x86emu/sys.c
+++ b/src/device/oprom/x86emu/sys.c
@@ -215,7 +215,7 @@ Default PIO byte read function. Doesn't perform real inb.
static u8 X86API p_inb(X86EMU_pioAddr addr)
{
DB(if (DEBUG_IO_TRACE())
- printf("inb %#04x \n", addr);)
+ printf("inb %#04x\n", addr);)
return inb(addr);
}
@@ -230,7 +230,7 @@ Default PIO word read function. Doesn't perform real inw.
static u16 X86API p_inw(X86EMU_pioAddr addr)
{
DB(if (DEBUG_IO_TRACE())
- printf("inw %#04x \n", addr);)
+ printf("inw %#04x\n", addr);)
return inw(addr);
}
@@ -245,7 +245,7 @@ Default PIO long read function. Doesn't perform real inl.
static u32 X86API p_inl(X86EMU_pioAddr addr)
{
DB(if (DEBUG_IO_TRACE())
- printf("inl %#04x \n", addr);)
+ printf("inl %#04x\n", addr);)
return inl(addr);
}
@@ -259,7 +259,7 @@ Default PIO byte write function. Doesn't perform real outb.
static void X86API p_outb(X86EMU_pioAddr addr, u8 val)
{
DB(if (DEBUG_IO_TRACE())
- printf("outb %#02x -> %#04x \n", val, addr);)
+ printf("outb %#02x -> %#04x\n", val, addr);)
outb(val, addr);
return;
}
@@ -274,7 +274,7 @@ Default PIO word write function. Doesn't perform real outw.
static void X86API p_outw(X86EMU_pioAddr addr, u16 val)
{
DB(if (DEBUG_IO_TRACE())
- printf("outw %#04x -> %#04x \n", val, addr);)
+ printf("outw %#04x -> %#04x\n", val, addr);)
outw(val, addr);
return;
}
@@ -289,7 +289,7 @@ Default PIO ;ong write function. Doesn't perform real outl.
static void X86API p_outl(X86EMU_pioAddr addr, u32 val)
{
DB(if (DEBUG_IO_TRACE())
- printf("outl %#08x -> %#04x \n", val, addr);)
+ printf("outl %#08x -> %#04x\n", val, addr);)
outl(val, addr);
return;