Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 01823a13 authored by Tim Schofield's avatar Tim Schofield Committed by Greg Kroah-Hartman
Browse files

Staging: rtl8192e: fix spacing style issues in r8180_93cx6.c



This is a patch to the r8180_93cx6.c file that fixes up spacing issue
warnings found by the checkpatch.pl tool

Signed-off-by: default avatarTim Schofield <tim@weberpafrica.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent f4098b4f
Loading
Loading
Loading
Loading
+32 −31
Original line number Original line Diff line number Diff line
@@ -69,7 +69,8 @@ static short eprom_r(struct net_device *dev)
	bit = (read_nic_byte(dev, EPROM_CMD) & (1<<EPROM_R_SHIFT));
	bit = (read_nic_byte(dev, EPROM_CMD) & (1<<EPROM_R_SHIFT));
	udelay(EPROM_DELAY);
	udelay(EPROM_DELAY);


	if(bit) return 1;
	if (bit)
		return 1;
	return 0;
	return 0;
}
}