aboutsummaryrefslogtreecommitdiff
path: root/src/device/oprom/x86emu/decode.c
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2016-08-21 18:28:17 +0200
committerMartin Roth <martinroth@google.com>2016-08-28 18:27:52 +0200
commitf772f9c6d2a3abc196fcc76cfaaa96f8381902b0 (patch)
treea1027e46ec626611128664bce34f63f13275c880 /src/device/oprom/x86emu/decode.c
parent11fc8015bd77c9b4212d2eac6e8254599a24bfed (diff)
src/device: Add required space before opening parenthesis '('
Change-Id: I48477c2917ab1be14d3cedf25e8b97dae1c1d309 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/16289 Tested-by: build bot (Jenkins) Reviewed-by: Omar Pakker
Diffstat (limited to 'src/device/oprom/x86emu/decode.c')
-rw-r--r--src/device/oprom/x86emu/decode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/device/oprom/x86emu/decode.c b/src/device/oprom/x86emu/decode.c
index d59583c53f..b7a6f35b51 100644
--- a/src/device/oprom/x86emu/decode.c
+++ b/src/device/oprom/x86emu/decode.c
@@ -1138,9 +1138,9 @@ Return the offset given by "mod" addressing.
unsigned decode_rmXX_address(int mod, int rm)
{
- if(mod == 0)
+ if (mod == 0)
return decode_rm00_address(rm);
- if(mod == 1)
+ if (mod == 1)
return decode_rm01_address(rm);
return decode_rm10_address(rm);
}