Commit 9c515551 authored by Roel Kluin's avatar Roel Kluin Committed by Greg Kroah-Hartman

Staging: rtl8187se: ! x & y problem in inactive code

Fix ! x & y problem in inactivated code
Signed-off-by: default avatarRoel Kluin <roel.kluin@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent b318a3a6
...@@ -3161,7 +3161,7 @@ void rtl8180_prepare_beacon(struct net_device *dev) ...@@ -3161,7 +3161,7 @@ void rtl8180_prepare_beacon(struct net_device *dev)
return ; return ;
} }
//while(! *tail & (1<<31)){ //while(! (*tail & (1<<31))){
*tail= 0; // zeroes header *tail= 0; // zeroes header
*tail = *tail| (1<<29) ; //fist segment of the packet *tail = *tail| (1<<29) ; //fist segment of the packet
......
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