[PATCH] staging:ccg: Fix missing brackets for sizeof (found by sparse).

Jesper Juhl jj at chaosbits.net
Wed Aug 8 20:22:23 UTC 2012


On Wed, 8 Aug 2012, Marek Belisko wrote:

> Fix following:
> WARNING: sizeof fsg should be sizeof(fsg)
> +	memset(&fsg, 0, sizeof fsg);
> 
> Signed-off-by: Marek Belisko <marek.belisko at open-nandra.com>
> ---
>  drivers/staging/ccg/ccg.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/staging/ccg/ccg.c b/drivers/staging/ccg/ccg.c
> index 6a7aab8..81ac6bb 100644
> --- a/drivers/staging/ccg/ccg.c
> +++ b/drivers/staging/ccg/ccg.c
> @@ -728,7 +728,7 @@ static int mass_storage_function_init(struct ccg_usb_function *f,
>  	struct fsg_common *common;
>  	int err;
>  
> -	memset(&fsg, 0, sizeof fsg);
> +	memset(&fsg, 0, sizeof(fsg));
>  	fsg.nluns = 1;
>  	fsg.luns[0].removable = 1;
>  	fsg.vendor_name = iManufacturer;
> 
Looks good to me.

Reviewed-by: Jesper Juhl <jj at chaosbits.net>


-- 
Jesper Juhl <jj at chaosbits.net>       http://www.chaosbits.net/
Don't top-post http://www.catb.org/jargon/html/T/top-post.html
Plain text mails only, please.




More information about the devel mailing list