On Mon, Apr 28, 2014 at 9:16 PM, Bjorn Helgaas <bhelgaas@xxxxxxxxxx> wrote: > On Mon, Apr 28, 2014 at 4:51 AM, Fabio Estevam <festevam@xxxxxxxxx> wrote: >> From: Fabio Estevam <fabio.estevam@xxxxxxxxxxxxx> >> >> Fix the following build warning that happens when building multi_v7_defconfig >> with CONFIG_ARM_LPAE=y: >> >> drivers/pci/host/pci-mvebu.c:334:5: warning: format '%x' expects argument of type 'unsigned int', but argument 3 has type 'phys_addr_t' [-Wformat=] >> >> While at it, also use '%zx' for printing 'size_t'. >> >> Reported-by: Olof's autobuilder <build@xxxxxxxxx> >> Signed-off-by: Fabio Estevam <fabio.estevam@xxxxxxxxxxxxx> >> --- >> drivers/pci/host/pci-mvebu.c | 4 ++-- >> 1 file changed, 2 insertions(+), 2 deletions(-) >> >> diff --git a/drivers/pci/host/pci-mvebu.c b/drivers/pci/host/pci-mvebu.c >> index e384e25..572a7b5 100644 >> --- a/drivers/pci/host/pci-mvebu.c >> +++ b/drivers/pci/host/pci-mvebu.c >> @@ -330,8 +330,8 @@ static void mvebu_pcie_add_windows(struct mvebu_pcie_port *port, >> sz, remap); >> if (ret) { >> dev_err(&port->pcie->pdev->dev, >> - "Could not create MBus window at 0x%x, size 0x%x: %d\n", >> - base, sz, ret); >> + "Could not create MBus window at %pa, size 0x%zx: %d\n", >> + &base, sz, ret); > > This is OK, but can we use the same "[mem 0x...-0x...]" format that > %pR prints a struct resource with? That would make it look more like > other similar information we print elsewhere. When you're debugging a > problem, sometimes you have to compare address information from > different places, and it's convenient if they all look similar. Understood your point, but in order to use %pR we need to use a 'struct resource', which is something that the current code is not using. 'sz' is calculated inside the function, so it is helpful to print it as is. IMHO if %pR should be used to improve readability, then it should be handled via a separate patch. This one does not introduce any functional change. -- To unsubscribe from this list: send the line "unsubscribe linux-pci" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html