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: Tim Schofield <tim@weberpafrica.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Tim Schofield 2010-02-04 19:57:09 +00:00 committed by Greg Kroah-Hartman
parent f4098b4f8a
commit 01823a13dc

View File

@ -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;
} }