Commit f97c26c0 authored by Xenia Ragiadakou's avatar Xenia Ragiadakou Committed by Greg Kroah-Hartman

rtl8192u: fix whitespace around ~ in r8180_93cx6.c

This patch fixes the whitespace around ~ and corrects the
following checkpatch error:
ERROR: space prohibited after that '~'
Signed-off-by: default avatarXenia Ragiadakou <burzalodowa@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 14bc0d4f
...@@ -28,7 +28,7 @@ void eprom_cs(struct net_device *dev, short bit) ...@@ -28,7 +28,7 @@ void eprom_cs(struct net_device *dev, short bit)
read_nic_byte_E(dev, EPROM_CMD)); //enable EPROM read_nic_byte_E(dev, EPROM_CMD)); //enable EPROM
else else
write_nic_byte_E(dev, EPROM_CMD, read_nic_byte_E(dev, EPROM_CMD)\ write_nic_byte_E(dev, EPROM_CMD, read_nic_byte_E(dev, EPROM_CMD)\
&~(1<<EPROM_CS_SHIFT)); //disable EPROM & ~(1<<EPROM_CS_SHIFT)); //disable EPROM
force_pci_posting(dev); force_pci_posting(dev);
udelay(EPROM_DELAY); udelay(EPROM_DELAY);
...@@ -42,7 +42,7 @@ void eprom_ck_cycle(struct net_device *dev) ...@@ -42,7 +42,7 @@ void eprom_ck_cycle(struct net_device *dev)
force_pci_posting(dev); force_pci_posting(dev);
udelay(EPROM_DELAY); udelay(EPROM_DELAY);
write_nic_byte_E(dev, EPROM_CMD, write_nic_byte_E(dev, EPROM_CMD,
read_nic_byte_E(dev, EPROM_CMD) &~ (1<<EPROM_CK_SHIFT)); read_nic_byte_E(dev, EPROM_CMD) & ~(1<<EPROM_CK_SHIFT));
force_pci_posting(dev); force_pci_posting(dev);
udelay(EPROM_DELAY); udelay(EPROM_DELAY);
} }
...@@ -55,7 +55,7 @@ void eprom_w(struct net_device *dev,short bit) ...@@ -55,7 +55,7 @@ void eprom_w(struct net_device *dev,short bit)
read_nic_byte_E(dev,EPROM_CMD)); read_nic_byte_E(dev,EPROM_CMD));
else else
write_nic_byte_E(dev, EPROM_CMD, read_nic_byte_E(dev,EPROM_CMD)\ write_nic_byte_E(dev, EPROM_CMD, read_nic_byte_E(dev,EPROM_CMD)\
&~(1<<EPROM_W_SHIFT)); & ~(1<<EPROM_W_SHIFT));
force_pci_posting(dev); force_pci_posting(dev);
udelay(EPROM_DELAY); udelay(EPROM_DELAY);
......
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