Commit 4b150936 authored by Xenia Ragiadakou's avatar Xenia Ragiadakou Committed by Greg Kroah-Hartman
Browse files

rtl8192u: fix whitespace around ~ in r8192U_core.c



This patch fixes 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 f97c26c0
Loading
Loading
Loading
Loading
+9 −9
Original line number Diff line number Diff line
@@ -984,8 +984,8 @@ void rtl8192_rtx_disable(struct net_device *dev)
	struct rtl8192_rx_info *info;

	cmd=read_nic_byte(dev,CMDR);
	write_nic_byte(dev, CMDR, cmd &~ \
		(CR_TE|CR_RE));
	write_nic_byte(dev, CMDR, cmd & \
		~(CR_TE|CR_RE));
	force_pci_posting(dev);
	mdelay(10);