Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1723179

Re: [PATCH v2] staging: ks7010: Fix coding style and remove checkpatch.pl warnings.

From Dan Carpenter <dan.carpenter@oracle.com>
Newsgroups linux.kernel
Subject Re: [PATCH v2] staging: ks7010: Fix coding style and remove checkpatch.pl warnings.
Date 2017-08-30 12:00 +0200
Message-ID <uk7WW-6Hb-21@gated-at.bofh.it> (permalink)
References <uk1ot-2B3-3@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On Tue, Aug 29, 2017 at 08:57:34PM -0600, Jonathan Whitaker wrote:
> It is prefered to use '"%s...", __func__ instead of function names for
> logging. This commit replaces hardcoded function name strings to the
> more preferred '"%s...", __func__' style. These warnings were reported
> by checkpatch.pl.
> 
> Signed-off-by: Jonathan Whitaker <jon.b.whitaker@gmail.com>
> 
> Changes in v2:
>   - Wrapped the changelog text to 72 columns.
>   - Fixed the commit subject to be more clear.
> ---

Put the Changelog under the --- cut off line.

>  drivers/staging/ks7010/ks7010_sdio.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/staging/ks7010/ks7010_sdio.c b/drivers/staging/ks7010/ks7010_sdio.c
> index 9b28ee1..c0e91c3 100644
> --- a/drivers/staging/ks7010/ks7010_sdio.c
> +++ b/drivers/staging/ks7010/ks7010_sdio.c
> @@ -834,7 +834,7 @@ static int ks7010_sdio_probe(struct sdio_func *func,
>  	unsigned char byte;
>  	int ret;
>  
> -	DPRINTK(5, "ks7010_sdio_probe()\n");
> +	DPRINTK(5, "%s()\n", __func__);

Just delete both the printks.  You can get the same information with
ftrace.

regards,
dan carpenter

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH v2] staging: ks7010: Fix coding style and remove checkpatch.pl warnings. Jonathan Whitaker <jon.b.whitaker@gmail.com> - 2017-08-30 05:00 +0200
  Re: [PATCH v2] staging: ks7010: Fix coding style and remove  checkpatch.pl warnings. Dan Carpenter <dan.carpenter@oracle.com> - 2017-08-30 12:00 +0200
    [PATCH v3] staging: ks7010: Fix coding style and remove checkpatch.pl warnings. Jonathan Whitaker <jon.b.whitaker@gmail.com> - 2017-08-31 06:30 +0200
      Re: [PATCH v3] staging: ks7010: Fix coding style and remove  checkpatch.pl warnings. Dan Carpenter <dan.carpenter@oracle.com> - 2017-08-31 10:10 +0200
        Re: [PATCH v3] staging: ks7010: Fix coding style and remove  checkpatch.pl warnings. Jonathan Whitaker <jon.b.whitaker@gmail.com> - 2017-08-31 15:50 +0200

csiph-web