diff options
author | Arnd Bergmann <arnd@arndb.de> | 2014-06-04 11:00:18 +0200 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2014-06-04 12:32:18 +0200 |
commit | 06fde1a014611a7902a874330d10e530312ceaef (patch) | |
tree | a64b25eed6b5a50a195fb85f17b9090ebc0822ac /arch/arm/mach-orion5x | |
parent | 9eb23c9218aac6ff4b5c2e660638a47c03f2c978 (diff) |
ARM: orion5x: fix mvebu_mbus_dt_init call
The prototype for mvebu_mbus_dt_init() changed around the same time
as a new caller was added to orion5x. This adds the missing argument
to make orion5x behave correctly.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'arch/arm/mach-orion5x')
-rw-r--r-- | arch/arm/mach-orion5x/board-dt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-orion5x/board-dt.c b/arch/arm/mach-orion5x/board-dt.c index 35d418faf8f1..79f033b1ddff 100644 --- a/arch/arm/mach-orion5x/board-dt.c +++ b/arch/arm/mach-orion5x/board-dt.c @@ -45,7 +45,7 @@ static void __init orion5x_dt_init(void) orion5x_id(&dev, &rev, &dev_name); printk(KERN_INFO "Orion ID: %s. TCLK=%d.\n", dev_name, orion5x_tclk); - BUG_ON(mvebu_mbus_dt_init()); + BUG_ON(mvebu_mbus_dt_init(false)); /* * Setup Orion address map |