Driver uses preprocessor directives to define SLP_ASLEEP and SLP_ACTIVE. These can be defined using an enumeration type. Doing so adds to the readability and gives the usual compiler benefits of having an enum. Functions that currently accept integer types can now use the new enumeration type, further aiding readability. Add enumeration type sleep_mode_type. Update code that handles sleep mode to use the new enumeration type. Signed-off-by: Tobin C. Harding <me@xxxxxxxx> --- drivers/staging/ks7010/ks_hostif.c | 7 ++++--- drivers/staging/ks7010/ks_hostif.h | 8 +++++--- drivers/staging/ks7010/ks_wlan_net.c | 21 +++++++++------------ 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/drivers/staging/ks7010/ks_hostif.c b/drivers/staging/ks7010/ks_hostif.c index 0f6b507..3ad2dc2 100644 --- a/drivers/staging/ks7010/ks_hostif.c +++ b/drivers/staging/ks7010/ks_hostif.c @@ -1665,11 +1665,12 @@ void hostif_power_mngmt_request(struct ks_wlan_private *priv, } static -void hostif_sleep_request(struct ks_wlan_private *priv, unsigned long mode) +void hostif_sleep_request(struct ks_wlan_private *priv, + enum sleep_mode_type mode) { struct hostif_sleep_request_t *pp; - DPRINTK(3, "mode=%lu\n", mode); + DPRINTK(3, "mode=%lu\n", (long)mode); if (mode == SLP_ASLEEP) { pp = hostif_generic_request(sizeof(*pp), HIF_SLEEP_REQ); @@ -1684,7 +1685,7 @@ void hostif_sleep_request(struct ks_wlan_private *priv, unsigned long mode) atomic_set(&priv->sleepstatus.wakeup_request, 1); queue_delayed_work(priv->wq, &priv->rw_dwork, 1); } else { - DPRINTK(3, "invalid mode %ld\n", mode); + DPRINTK(3, "invalid mode %ld\n", (long)mode); return; } } diff --git a/drivers/staging/ks7010/ks_hostif.h b/drivers/staging/ks7010/ks_hostif.h index 2d9a342..98944e1 100644 --- a/drivers/staging/ks7010/ks_hostif.h +++ b/drivers/staging/ks7010/ks_hostif.h @@ -542,9 +542,11 @@ struct hostif_phy_information_confirm_t { u32 rx_error; } __packed; -/* sleep mode */ -#define SLP_ACTIVE 0 -#define SLP_ASLEEP 1 +enum sleep_mode_type { + SLP_ACTIVE, + SLP_ASLEEP +}; + struct hostif_sleep_request_t { struct hostif_hdr header; } __packed; diff --git a/drivers/staging/ks7010/ks_wlan_net.c b/drivers/staging/ks7010/ks_wlan_net.c index 905e302..a50d86d 100644 --- a/drivers/staging/ks7010/ks_wlan_net.c +++ b/drivers/staging/ks7010/ks_wlan_net.c @@ -2309,22 +2309,19 @@ static int ks_wlan_set_sleep_mode(struct net_device *dev, DPRINTK(2, "\n"); - if (*uwrq == SLP_ASLEEP) { - priv->sleep_mode = *uwrq; - netdev_info(dev, "SET_SLEEP_MODE %d\n", priv->sleep_mode); - - hostif_sme_enqueue(priv, SME_STOP_REQUEST); - hostif_sme_enqueue(priv, SME_SLEEP_REQUEST); - - } else if (*uwrq == SLP_ACTIVE) { - priv->sleep_mode = *uwrq; - netdev_info(dev, "SET_SLEEP_MODE %d\n", priv->sleep_mode); - hostif_sme_enqueue(priv, SME_SLEEP_REQUEST); - } else { + if (*uwrq != SLP_ASLEEP && *uwrq != SLP_ACTIVE) { netdev_err(dev, "SET_SLEEP_MODE %d errror\n", *uwrq); return -EINVAL; } + priv->sleep_mode = *uwrq; + netdev_info(dev, "SET_SLEEP_MODE %d\n", *uwrq); + + if (*uwrq == SLP_ASLEEP) + hostif_sme_enqueue(priv, SME_STOP_REQUEST); + + hostif_sme_enqueue(priv, SME_SLEEP_REQUEST); + return 0; } -- 2.7.4 _______________________________________________ devel mailing list devel@xxxxxxxxxxxxxxxxxxxxxx http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel