Commit f9c73f9b authored by Andrew Miller's avatar Andrew Miller Committed by Greg Kroah-Hartman

Staging: rtl8187se: r8185b_init.c: Fix some spacing issues

Fix some more spacing issues I missed before
Signed-off-by: default avatarAndrew Miller <amiller@amilx.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 3d2ec48e
...@@ -121,16 +121,14 @@ void PlatformIOWrite1Byte(struct net_device *dev, u32 offset, u8 data) ...@@ -121,16 +121,14 @@ void PlatformIOWrite1Byte(struct net_device *dev, u32 offset, u8 data)
{ {
write_nic_byte(dev, offset, data); write_nic_byte(dev, offset, data);
read_nic_byte(dev, offset); /* To make sure write operation is completed, 2005.11.09, by rcnjko. */ read_nic_byte(dev, offset); /* To make sure write operation is completed, 2005.11.09, by rcnjko. */
} }
void PlatformIOWrite2Byte(struct net_device *dev, u32 offset, u16 data) void PlatformIOWrite2Byte(struct net_device *dev, u32 offset, u16 data)
{ {
write_nic_word(dev, offset, data); write_nic_word(dev, offset, data);
read_nic_word(dev, offset); /* To make sure write operation is completed, 2005.11.09, by rcnjko. */ read_nic_word(dev, offset); /* To make sure write operation is completed, 2005.11.09, by rcnjko. */
} }
u8 PlatformIORead1Byte(struct net_device *dev, u32 offset); u8 PlatformIORead1Byte(struct net_device *dev, u32 offset);
void PlatformIOWrite4Byte(struct net_device *dev, u32 offset, u32 data) void PlatformIOWrite4Byte(struct net_device *dev, u32 offset, u32 data)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment