summaryrefslogtreecommitdiffstats
path: root/drivers/gpio
diff options
context:
space:
mode:
authorFabio Estevam2014-02-26 12:12:37 +0100
committerLinus Walleij2014-03-07 02:19:38 +0100
commit76b3627ea511f73c25c9d9a4c28e4449d72a9b1c (patch)
tree48f2f38d1ed956ae2733b0839321602ebb8e4b62 /drivers/gpio
parentfix build error in gpio-dwapb patch (diff)
downloadkernel-qcow2-linux-76b3627ea511f73c25c9d9a4c28e4449d72a9b1c.tar.gz
kernel-qcow2-linux-76b3627ea511f73c25c9d9a4c28e4449d72a9b1c.tar.xz
kernel-qcow2-linux-76b3627ea511f73c25c9d9a4c28e4449d72a9b1c.zip
gpio: gpio-pl061: Use %pa to print 'resource_size_t'
The following build warning is generated when building multi_v7_defconfig with LPAE option selected: drivers/gpio/gpio-pl061.c:358:2: warning: format '%x' expects argument of type 'unsigned int', but argument 3 has type 'resource_size_t' [-Wformat=] Fix it by using %pa to print 'resource_size_t'. Reported-by: Olof's autobuilder <build@lixom.net> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio')
-rw-r--r--drivers/gpio/gpio-pl061.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpio/gpio-pl061.c b/drivers/gpio/gpio-pl061.c
index e528cb2b12aa..391766e5aeed 100644
--- a/drivers/gpio/gpio-pl061.c
+++ b/drivers/gpio/gpio-pl061.c
@@ -355,8 +355,8 @@ static int pl061_probe(struct amba_device *adev, const struct amba_id *id)
}
amba_set_drvdata(adev, chip);
- dev_info(&adev->dev, "PL061 GPIO chip @%08x registered\n",
- adev->res.start);
+ dev_info(&adev->dev, "PL061 GPIO chip @%pa registered\n",
+ &adev->res.start);
return 0;
}