linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Joe Perches <joe@perches.com>
To: Himanshu Jha <himanshujha199640@gmail.com>, gregkh@linuxfoundation.org
Cc: aditya.shankar@microchip.com, linux-kernel@vger.kernel.org,
	linux-wireless@vger.kernel.org
Subject: Re: [PATCH] Staging: wilc1000: Fix line over 80 characters
Date: Fri, 04 Aug 2017 01:14:04 -0700	[thread overview]
Message-ID: <1501834444.2106.5.camel@perches.com> (raw)
In-Reply-To: <1501797622-1711-1-git-send-email-himanshujha199640@gmail.com>

On Fri, 2017-08-04 at 03:30 +0530, Himanshu Jha wrote:
> This patch fixes 80 characters limit coding style issue.
> 
> Signed-off-by: Himanshu Jha <himanshujha199640@gmail.com>
> ---
>  drivers/staging/wilc1000/linux_wlan.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/staging/wilc1000/linux_wlan.c b/drivers/staging/wilc1000/linux_wlan.c
> index dbb3e24..5dab2cd 100644
> --- a/drivers/staging/wilc1000/linux_wlan.c
> +++ b/drivers/staging/wilc1000/linux_wlan.c
> @@ -1087,7 +1087,8 @@ static int mac_ioctl(struct net_device *ndev, struct ifreq *req, int cmd)
>  
>  				snprintf(buff, size, "rssi %d", rssi);
>  
> -				if (copy_to_user(wrq->u.data.pointer, buff, size)) {
> +				if (copy_to_user(wrq->u.data.pointer, buff,
> +							size)) {
>  					netdev_err(ndev, "failed to copy\n");
>  					ret = -EFAULT;
>  					goto done;

Rather than just shut-up checkpatch, please try
to improve the code.

For instance, this function could be rewritten as:
---
 drivers/staging/wilc1000/linux_wlan.c | 51 +++++++++++++++--------------------
 1 file changed, 21 insertions(+), 30 deletions(-)

diff --git a/drivers/staging/wilc1000/linux_wlan.c b/drivers/staging/wilc1000/linux_wlan.c
index 119f3459b5bb..0d8371f76015 100644
--- a/drivers/staging/wilc1000/linux_wlan.c
+++ b/drivers/staging/wilc1000/linux_wlan.c
@@ -1054,60 +1054,51 @@ static int wilc_mac_close(struct net_device *ndev)
 
 static int mac_ioctl(struct net_device *ndev, struct ifreq *req, int cmd)
 {
-	u8 *buff = NULL;
-	s8 rssi;
-	u32 size = 0;
-	struct wilc_vif *vif;
 	s32 ret = 0;
-	struct wilc *wilc;
-
-	vif = netdev_priv(ndev);
-	wilc = vif->wilc;
+	u8 *buff = NULL;
+	struct wilc_vif *vif = netdev_priv(ndev);
+	struct wilc *wilc = vif->wilc;
 
 	if (!wilc->initialized)
 		return 0;
 
 	switch (cmd) {
-	case SIOCSIWPRIV:
-	{
+	case SIOCSIWPRIV: {
 		struct iwreq *wrq = (struct iwreq *)req;
+		struct iw_point *data = &wrq->u.data;
+		u32 size = data->length;
 
-		size = wrq->u.data.length;
+		if (size && data->pointer) {
+			s8 rssi;
 
-		if (size && wrq->u.data.pointer) {
-			buff = memdup_user(wrq->u.data.pointer,
-					   wrq->u.data.length);
+			buff = memdup_user(data->pointer, data->length);
 			if (IS_ERR(buff))
 				return PTR_ERR(buff);
 
-			if (strncasecmp(buff, "RSSI", size) == 0) {
-				ret = wilc_get_rssi(vif, &rssi);
-				netdev_info(ndev, "RSSI :%d\n", rssi);
+			if (strncasecmp(buff, "RSSI", size) != 0)
+				break;
+
+			ret = wilc_get_rssi(vif, &rssi);
+			netdev_info(ndev, "RSSI: %d\n", rssi);
 
-				rssi += 5;
+			rssi += 5;
 
-				snprintf(buff, size, "rssi %d", rssi);
+			snprintf(buff, size, "rssi %d", rssi);
 
-				if (copy_to_user(wrq->u.data.pointer, buff, size)) {
-					netdev_err(ndev, "failed to copy\n");
-					ret = -EFAULT;
-					goto done;
-				}
+			if (copy_to_user(data->pointer, buff, size)) {
+				netdev_err(ndev, "failed to copy\n");
+				ret = -EFAULT;
 			}
 		}
+		break;
 	}
-	break;
 
 	default:
-	{
 		netdev_info(ndev, "Command - %d - has been received\n", cmd);
 		ret = -EOPNOTSUPP;
-		goto done;
-	}
+		break;
 	}
 
-done:
-
 	kfree(buff);
 
 	return ret;

      reply	other threads:[~2017-08-04  8:14 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-03 22:00 [PATCH] Staging: wilc1000: Fix line over 80 characters Himanshu Jha
2017-08-04  8:14 ` Joe Perches [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1501834444.2106.5.camel@perches.com \
    --to=joe@perches.com \
    --cc=aditya.shankar@microchip.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=himanshujha199640@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-wireless@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).