From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Thibaut Robert <thibaut.robert@gmail.com>
Cc: Joe Perches <joe@perches.com>,
devel@driverdev.osuosl.org,
Davide Gianforte <davide@gengisdave.org>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] staging: gdm72xx: fix typo and coding style
Date: Sat, 4 Oct 2014 18:18:23 -0700 [thread overview]
Message-ID: <20141005011823.GA11675@kroah.com> (raw)
In-Reply-To: <1412074983-10909-1-git-send-email-thibaut.robert@gmail.com>
On Tue, Sep 30, 2014 at 01:03:03PM +0200, Thibaut Robert wrote:
> Fix a typo in error message.
> Add missing curling braces to conform to coding style.
> Improve readibility.
That's three things in one patch :(
Please only do one thing per patch.
>
> Signed-off-by: Thibaut Robert <thibaut.robert@gmail.com>
> ---
> drivers/staging/gdm72xx/netlink_k.c | 16 ++++++++--------
> 1 file changed, 8 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/staging/gdm72xx/netlink_k.c b/drivers/staging/gdm72xx/netlink_k.c
> index 9d78bfc..31862e5 100644
> --- a/drivers/staging/gdm72xx/netlink_k.c
> +++ b/drivers/staging/gdm72xx/netlink_k.c
> @@ -71,10 +71,11 @@ static void netlink_rcv_cb(struct sk_buff *skb)
> if (dev) {
> rcv_cb(dev, nlh->nlmsg_type, msg, mlen);
> dev_put(dev);
> - } else
> + } else {
> netdev_err(skb->dev,
> "dev_get_by_index(%d) is not found.\n",
> ifindex);
> + }
> } else {
> netdev_err(skb->dev, "Unregistered Callback\n");
> }
> @@ -120,9 +121,9 @@ int netlink_send(struct sock *sock, int group, u16 type, void *msg, int len)
> struct nlmsghdr *nlh;
> int ret = 0;
>
> - if (group > ND_MAX_GROUP) {
> - pr_err("Group %d is invalied.\n", group);
> - pr_err("Valid group is 0 ~ %d.\n", ND_MAX_GROUP);
> + if (group < 0 || group > ND_MAX_GROUP) {
How can group be less than 0?
thanks,
greg k-h
prev parent reply other threads:[~2014-10-05 1:18 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-29 18:15 [PATCH] Staging: gdm72xx: fix " Thibaut Robert
2014-09-29 18:31 ` Joe Perches
2014-09-30 10:20 ` Thibaut Robert
2014-09-30 10:23 ` Thibaut Robert
2014-09-30 11:02 ` Thibaut Robert
2014-09-30 11:03 ` [PATCH] staging: gdm72xx: fix typo and " Thibaut Robert
2014-10-05 1:18 ` Greg Kroah-Hartman [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=20141005011823.GA11675@kroah.com \
--to=gregkh@linuxfoundation.org \
--cc=davide@gengisdave.org \
--cc=devel@driverdev.osuosl.org \
--cc=joe@perches.com \
--cc=linux-kernel@vger.kernel.org \
--cc=thibaut.robert@gmail.com \
/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
Powered by JetHome