Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Merge tag 'mvebu-watchdog-3.15-2' of git://git.infradead.org/linux-mvebu into next/drivers

mvebu watchdog driver changes for v3.15 (incremental #2)
- remove warnings by using %pa for phys_addr_t

* tag 'mvebu-watchdog-3.15-2' of git://git.infradead.org/linux-mvebu:
watchdog: orion_wdt: Use %pa to print 'phys_addr_t'

Signed-off-by: Olof Johansson <olof@lixom.net>

+1 -1
+1 -1
drivers/watchdog/orion_wdt.c
··· 269 269 270 270 rstout = internal_regs + ORION_RSTOUT_MASK_OFFSET; 271 271 272 - WARN(1, FW_BUG "falling back to harcoded RSTOUT reg 0x%x\n", rstout); 272 + WARN(1, FW_BUG "falling back to harcoded RSTOUT reg %pa\n", &rstout); 273 273 return devm_ioremap(&pdev->dev, rstout, 0x4); 274 274 } 275 275