From fd215651520abd71250c9d29f12f41bcaaed50d1 Mon Sep 17 00:00:00 2001 From: Mark Einon Date: Tue, 22 Jan 2013 21:04:50 +0000 Subject: ethtool: Fix space-after-if checkpatch errors Some version check statements are lacking a space after the if () statement. Add them in. Signed-off-by: Mark Einon Signed-off-by: Ben Hutchings --- et131x.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'et131x.c') diff --git a/et131x.c b/et131x.c index 8cdbec0..36abaa2 100644 --- a/et131x.c +++ b/et131x.c @@ -7,7 +7,7 @@ int et131x_dump_regs(struct ethtool_drvinfo *info, struct ethtool_regs *regs) u8 version = (u8)(regs->version >> 24); u32 *reg = (u32 *)regs->data; - if(version != 1) + if (version != 1) return -1; fprintf(stdout, "PHY Registers\n"); -- cgit v1.2.1