Re: [PATCH v2] leds-lp5521/3: use '%zu' for formatting 'size_t'

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Wed, Jan 23, 2013 at 3:43 PM, Kim, Milo <Milo.Kim@xxxxxx> wrote:
> The printk format of type 'size_t' is not '%d' but '%zu' or '%zx'.
> This patch fixes build warnings below.
>
>  drivers/leds/leds-lp5521.c: In function lp5521_firmware_loaded:
>  drivers/leds/leds-lp5521.c:257:4: warning: format %d expects argument of
>   type int, but argument 3 has type size_t [-Wformat]
>
>  drivers/leds/leds-lp5523.c: In function lp5523_firmware_loaded:
>  drivers/leds/leds-lp5523.c:283:4: warning: format %d expects argument of
>   type int, but argument 3 has type size_t [-Wformat]
>

OK, applied.
Thanks,
-Bryan

> Signed-off-by: Milo(Woogyom) Kim <milo.kim@xxxxxx>
> ---
>  drivers/leds/leds-lp5521.c |    2 +-
>  drivers/leds/leds-lp5523.c |    2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/leds/leds-lp5521.c b/drivers/leds/leds-lp5521.c
> index 80adfb4..1001347 100644
> --- a/drivers/leds/leds-lp5521.c
> +++ b/drivers/leds/leds-lp5521.c
> @@ -253,7 +253,7 @@ static void lp5521_firmware_loaded(struct lp55xx_chip *chip)
>         const struct firmware *fw = chip->fw;
>
>         if (fw->size > LP5521_PROGRAM_LENGTH) {
> -               dev_err(&chip->cl->dev, "firmware data size overflow: %d\n",
> +               dev_err(&chip->cl->dev, "firmware data size overflow: %zu\n",
>                         fw->size);
>                 return;
>         }
> diff --git a/drivers/leds/leds-lp5523.c b/drivers/leds/leds-lp5523.c
> index 4ac7061..229f734 100644
> --- a/drivers/leds/leds-lp5523.c
> +++ b/drivers/leds/leds-lp5523.c
> @@ -279,7 +279,7 @@ static void lp5523_firmware_loaded(struct lp55xx_chip *chip)
>         const struct firmware *fw = chip->fw;
>
>         if (fw->size > LP5523_PROGRAM_LENGTH) {
> -               dev_err(&chip->cl->dev, "firmware data size overflow: %d\n",
> +               dev_err(&chip->cl->dev, "firmware data size overflow: %zu\n",
>                         fw->size);
>                 return;
>         }
> --
> 1.7.9.5
>
>
> Best Regards,
> Milo
>
--
To unsubscribe from this list: send the line "unsubscribe linux-leds" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[Index of Archives]     [Linux ARM Kernel]     [Linux ARM]     [Linux Omap]     [Fedora ARM]     [IETF Annouce]     [Security]     [Bugtraq]     [Linux OMAP]     [Linux MIPS]     [ECOS]     [Asterisk Internet PBX]     [Linux API]

  Powered by Linux