[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1385492161-27624-1-git-send-email-olof@lixom.net>
Date: Tue, 26 Nov 2013 10:56:01 -0800
From: Olof Johansson <olof@...om.net>
To: linus.walleij@...aro.org
Cc: linux-gpio@...r.kernel.org, linux-kernel@...r.kernel.org,
Olof Johansson <olof@...om.net>
Subject: [PATCH] gpio: pl061: print resource_size_t as %pa
commit 73675c8aa07 ('gpio: pl061: proper error messages') added a printout
of a resource_size_t using %x, which produces an error for builds with
64-bit resources:
drivers/gpio/gpio-pl061.c:345:3: warning: format '%x' expects argument of
type 'unsigned int', but argument 3 has type 'resource_size_t'
Switch to %pa (and pass in a pointer to the resource instead).
Fixes: 73675c8aa07 ('gpio: pl061: proper error messages')
Signed-off-by: Olof Johansson <olof@...om.net>
---
drivers/gpio/gpio-pl061.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpio/gpio-pl061.c b/drivers/gpio/gpio-pl061.c
index f08e5e2cbe50..4ed16d7bd13d 100644
--- a/drivers/gpio/gpio-pl061.c
+++ b/drivers/gpio/gpio-pl061.c
@@ -341,8 +341,8 @@ static int pl061_probe(struct amba_device *adev, const struct amba_id *id)
}
amba_set_drvdata(adev, chip);
- dev_err(&adev->dev, "PL061 GPIO chip @%08x registered\n",
- adev->res.start);
+ dev_err(&adev->dev, "PL061 GPIO chip @%pa registered\n",
+ &adev->res.start);
return 0;
}
--
1.8.4.1.601.g02b3b1d
--
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