diff options
author | Olof Johansson <olof@lixom.net> | 2016-04-12 12:35:07 -0700 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2016-04-12 12:35:07 -0700 |
commit | 0b24f7a8d6e0d17bcf24433ce5827841a05b5b46 (patch) | |
tree | 17e0ad5f2cb267bb5694d4eaaea8515406414dd8 /drivers/bus | |
parent | 452a31fd36255fc7d9dd9dce9d820fe0e5bb97b8 (diff) | |
parent | 199831c77c50e6913e893b6bc268ba9f4a9a2bf8 (diff) | |
download | linux-0b24f7a8d6e0d17bcf24433ce5827841a05b5b46.tar.bz2 |
Merge tag 'mvebu-fixes-4.6-1' of git://git.infradead.org/linux-mvebu into fixes
mvebu fixes for 4.6 (part 1)
- fix USB adress register for Linksys Armada 388 based boards
- fix build warning in mvebu-mbus
* tag 'mvebu-fixes-4.6-1' of git://git.infradead.org/linux-mvebu:
ARM: mvebu: Correct unit address for linksys
bus: mvebu-mbus: use %pa to print phys_addr_t
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'drivers/bus')
-rw-r--r-- | drivers/bus/mvebu-mbus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/bus/mvebu-mbus.c b/drivers/bus/mvebu-mbus.c index c2e52864bb03..ce54a0160faa 100644 --- a/drivers/bus/mvebu-mbus.c +++ b/drivers/bus/mvebu-mbus.c @@ -972,7 +972,7 @@ int mvebu_mbus_get_dram_win_info(phys_addr_t phyaddr, u8 *target, u8 *attr) } } - pr_err("invalid dram address 0x%x\n", phyaddr); + pr_err("invalid dram address %pa\n", &phyaddr); return -EINVAL; } EXPORT_SYMBOL_GPL(mvebu_mbus_get_dram_win_info); |