[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20121121090749.GF11248@mwanda>
Date: Wed, 21 Nov 2012 12:07:49 +0300
From: Dan Carpenter <dan.carpenter@...cle.com>
To: Johan Meiring <johanmeiring@...il.com>
Cc: gregkh@...uxfoundation.org, a.beregalov@...il.com,
devendra.aaru@...il.com, devel@...verdev.osuosl.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH 06/10] staging: cxt1e1: musycc.c: fixes placement of
parentheses
On Tue, Nov 20, 2012 at 07:28:48PM +0200, Johan Meiring wrote:
> This commit fixes several incorrect placements of parantheses, as
> identified by the checkpatch.pl tool.
>
This patch is fine, and all.
Acked-by: Dan Carpenter <dan.carpenter@...cle.com>
But you could go beyond fixing just checkpatch.pl warnings.
> Signed-off-by: Johan Meiring <johanmeiring@...il.com>
> ---
> drivers/staging/cxt1e1/musycc.c | 490 +++++++++++++++++++--------------------
> 1 file changed, 245 insertions(+), 245 deletions(-)
>
> diff --git a/drivers/staging/cxt1e1/musycc.c b/drivers/staging/cxt1e1/musycc.c
> index 42e1ca4..b2cc68a 100644
> --- a/drivers/staging/cxt1e1/musycc.c
> +++ b/drivers/staging/cxt1e1/musycc.c
> @@ -60,21 +60,21 @@ extern ci_t *CI; /* dummy pointr to board ZEROE's data - DEBUG
>
> /*******************************************************************/
This line could be deleted.
> /* forward references */
Obvious comment is obvious.
> -void c4_fifo_free (mpi_t *, int);
> -void c4_wk_chan_restart (mch_t *);
> -void musycc_bh_tx_eom (mpi_t *, int);
> -int musycc_chan_up (ci_t *, int);
> -status_t __init musycc_init (ci_t *);
> -STATIC void __init musycc_init_port (mpi_t *);
> -void musycc_intr_bh_tasklet (ci_t *);
> -void musycc_serv_req (mpi_t *, u_int32_t);
> -void musycc_update_timeslots (mpi_t *);
> +void c4_fifo_free(mpi_t *, int);
> +void c4_wk_chan_restart(mch_t *);
> +void musycc_bh_tx_eom(mpi_t *, int);
> +int musycc_chan_up(ci_t *, int);
> +status_t __init musycc_init(ci_t *);
> +STATIC void __init musycc_init_port(mpi_t *);
> +void musycc_intr_bh_tasklet(ci_t *);
> +void musycc_serv_req(mpi_t *, u_int32_t);
> +void musycc_update_timeslots(mpi_t *);
These would look better done properly.
void musycc_serv_req(mpi_t *pi, u_int32_t req);
Keep the parameter names because they serve as documentation. And
actually, they should be moved to a header file which is included
instead of declared in the .c files where they are used.
regards,
dan carpenter
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists