All of lore.kernel.org
 help / color / mirror / Atom feed
From: Felipe Balbi <balbi@kernel.org>
To: Juergen Gross <jgross@suse.com>,
	linux-kernel@vger.kernel.org, linux-usb@vger.kernel.org
Cc: gregkh@linuxfoundation.org, Juergen Gross <jgross@suse.com>
Subject: Re: [PATCH] usb/gadget: use kasprintf() instead of open coding it
Date: Mon, 10 Oct 2016 13:26:03 +0300	[thread overview]
Message-ID: <87vax0wldw.fsf@linux.intel.com> (raw)
In-Reply-To: <1476094677-15101-1-git-send-email-jgross@suse.com>

[-- Attachment #1: Type: text/plain, Size: 1316 bytes --]


Hi,

Juergen Gross <jgross@suse.com> writes:

> Signed-off-by: Juergen Gross <jgross@suse.com>

I can't apply anything without a commit log. Sorry.

> diff --git a/drivers/usb/gadget/composite.c b/drivers/usb/gadget/composite.c
> index 32176f7..455efec 100644
> --- a/drivers/usb/gadget/composite.c
> +++ b/drivers/usb/gadget/composite.c
> @@ -2382,18 +2382,8 @@ EXPORT_SYMBOL_GPL(usb_composite_setup_continue);
>  
>  static char *composite_default_mfr(struct usb_gadget *gadget)
>  {
> -	char *mfr;
> -	int len;
> -
> -	len = snprintf(NULL, 0, "%s %s with %s", init_utsname()->sysname,
> -			init_utsname()->release, gadget->name);
> -	len++;
> -	mfr = kmalloc(len, GFP_KERNEL);
> -	if (!mfr)
> -		return NULL;
> -	snprintf(mfr, len, "%s %s with %s", init_utsname()->sysname,
> -			init_utsname()->release, gadget->name);
> -	return mfr;
> +	return kasprintf(GFP_KERNEL, "%s %s with %s", init_utsname()->sysname,
> +			 init_utsname()->release, gadget->name);
>  }
>  
>  void usb_composite_overwrite_options(struct usb_composite_dev *cdev,
> -- 
> 2.6.6
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-usb" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

-- 
balbi

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 800 bytes --]

  reply	other threads:[~2016-10-10 10:26 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-10-10 10:17 [PATCH] usb/gadget: use kasprintf() instead of open coding it Juergen Gross
2016-10-10 10:26 ` Felipe Balbi [this message]
2016-10-10 10:34   ` Juergen Gross

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=87vax0wldw.fsf@linux.intel.com \
    --to=balbi@kernel.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=jgross@suse.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.