lkml.org 
[lkml]   [2014]   [Jul]   [7]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH v2 4/4] Staging: rts5208: Fix a format specifier for dev_err
On 07/07/2014 03:10 PM, Fabio Falzoi wrote:
> Fix an incorrect use of the %d format specifier in dev_err that caused a
> warning.
>
> Signed-off-by: Fabio Falzoi <fabio.falzoi84@gmail.com>
> ---
> drivers/staging/rts5208/rtsx.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/staging/rts5208/rtsx.c b/drivers/staging/rts5208/rtsx.c
> index 4f5f7a3..9aae7ac 100644
> --- a/drivers/staging/rts5208/rtsx.c
> +++ b/drivers/staging/rts5208/rtsx.c
> @@ -463,14 +463,14 @@ static int rtsx_control_thread(void *__dev)
> * the maximum known LUN
> */
> else if (chip->srb->device->id) {
> - dev_err(&dev->pci->dev, "Bad target number (%d:%d)\n",
> + dev_err(&dev->pci->dev, "Bad target number (%d:%llu)\n",
here exist some compile warning.
drivers/staging/rts5208/rtsx.c:468:5: warning: format ‘%llu’ expects
argument of type ‘long long unsigned int’, but argument 4 has type
‘unsigned int’ [-Wformat]

> chip->srb->device->id,
> chip->srb->device->lun);
> chip->srb->result = DID_BAD_TARGET << 16;
> }
>
> else if (chip->srb->device->lun > chip->max_lun) {
> - dev_err(&dev->pci->dev, "Bad LUN (%d:%d)\n",
> + dev_err(&dev->pci->dev, "Bad LUN (%d:%llu)\n",
> chip->srb->device->id,
> chip->srb->device->lun);
> chip->srb->result = DID_BAD_TARGET << 16;

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2014-07-08 05:01    [W:0.069 / U:0.520 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site