Message ID | 20140429165419.GA13735@google.com (mailing list archive) |
---|---|
State | New, archived |
Delegated to: | Bjorn Helgaas |
Headers | show |
On Tue, Apr 29, 2014 at 10:54:19AM -0600, Bjorn Helgaas wrote: ... > I'm ready to merge the following, given an ack from Thomas or Jason. > Jingoo, I added your reviewed-by, since this is essentially what you > reviewed before. > > Bjorn > > > commit 5bbf2f268b9001c2e46aff6ff17cee0e8a6b8fb8 > Author: Fabio Estevam <fabio.estevam@freescale.com> > Date: Tue Apr 29 09:58:07 2014 -0300 > > PCI: mvebu: Use '%pa' for printing 'phys_addr_t' type > > 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=] > > Fix the warning by using '%pa' to printing 'phys_addr_t' type. While at > it, also use the more standard notation [mem 0x-0x] for memory region. > > Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com> > Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> > Reviewed-by: Jingoo Han <jg1.han@samsung.com> Acked-by: Jason Cooper <jason@lakedaemon.net> thx, Jason. -- To unsubscribe from this list: send the line "unsubscribe linux-pci" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/pci/host/pci-mvebu.c b/drivers/pci/host/pci-mvebu.c index 29d64c9efa85..7f450322f397 100644 --- a/drivers/pci/host/pci-mvebu.c +++ b/drivers/pci/host/pci-mvebu.c @@ -328,9 +328,11 @@ static void mvebu_pcie_add_windows(struct mvebu_pcie_port *port, ret = mvebu_mbus_add_window_remap_by_id(target, attribute, base, sz, remap); if (ret) { + phys_addr_t end = base + sz - 1; + 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 [mem %pa-%pa]: %d\n", + &base, &end, ret); mvebu_pcie_del_windows(port, base - size_mapped, size_mapped); return;