mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-13 11:48:58 -04:00
staging: ks7010: Change 'device_open_status' to a bool.
The 'device_open_status' member of 'struct ks_wlan_private' is only ever set to zero or one, so it makes more sense for it to be a bool instead of an int. Signed-off-by: Quytelda Kahja <quytelda@tamalin.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
582475a29c
commit
8102f61d45
@@ -443,7 +443,7 @@ struct ks_wlan_private {
|
||||
unsigned int need_commit; /* for ioctl */
|
||||
|
||||
/* DeviceIoControl */
|
||||
int device_open_status;
|
||||
bool device_open_status;
|
||||
atomic_t event_count;
|
||||
atomic_t rec_count;
|
||||
int dev_count;
|
||||
|
||||
@@ -2875,10 +2875,9 @@ int ks_wlan_net_start(struct net_device *dev)
|
||||
|
||||
priv = netdev_priv(dev);
|
||||
priv->mac_address_valid = false;
|
||||
priv->device_open_status = true;
|
||||
priv->need_commit = 0;
|
||||
|
||||
priv->device_open_status = 1;
|
||||
|
||||
/* phy information update timer */
|
||||
atomic_set(&update_phyinfo, 0);
|
||||
timer_setup(&update_phyinfo_timer, ks_wlan_update_phyinfo_timeout, 0);
|
||||
@@ -2908,7 +2907,7 @@ int ks_wlan_net_stop(struct net_device *dev)
|
||||
{
|
||||
struct ks_wlan_private *priv = netdev_priv(dev);
|
||||
|
||||
priv->device_open_status = 0;
|
||||
priv->device_open_status = false;
|
||||
del_timer_sync(&update_phyinfo_timer);
|
||||
|
||||
if (netif_running(dev))
|
||||
|
||||
Reference in New Issue
Block a user