diff options
Diffstat (limited to 'drivers/amba')
-rw-r--r-- | drivers/amba/Kconfig | 14 | ||||
-rw-r--r-- | drivers/amba/bus.c | 2 |
2 files changed, 15 insertions, 1 deletions
diff --git a/drivers/amba/Kconfig b/drivers/amba/Kconfig new file mode 100644 index 000000000000..4a5c9d279059 --- /dev/null +++ b/drivers/amba/Kconfig @@ -0,0 +1,14 @@ +config ARM_AMBA + bool + +if ARM_AMBA + +config TEGRA_AHB + bool "Enable AHB driver for NVIDIA Tegra SoCs" + default y if ARCH_TEGRA + help + Adds AHB configuration functionality for NVIDIA Tegra SoCs, + which controls AHB bus master arbitration and some performance + parameters (priority, prefetch size). + +endif diff --git a/drivers/amba/bus.c b/drivers/amba/bus.c index f8e3bb44938e..80f4de729a86 100644 --- a/drivers/amba/bus.c +++ b/drivers/amba/bus.c @@ -131,7 +131,7 @@ static const struct dev_pm_ops amba_pm = { .thaw = pm_generic_thaw, .poweroff = pm_generic_poweroff, .restore = pm_generic_restore, - SET_PM_RUNTIME_PM_OPS( + SET_RUNTIME_PM_OPS( amba_pm_runtime_suspend, amba_pm_runtime_resume, NULL |