diff options
author | Arnd Bergmann <arnd@arndb.de> | 2017-05-24 17:39:03 +0200 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@free-electrons.com> | 2017-05-29 11:06:56 +0200 |
commit | cc7a938f5f308eeb6f8fe3cec28e1800aa81facb (patch) | |
tree | 5080639e453b161dd446857c65e59ead7cdf642c /arch/arm/mach-at91 | |
parent | 41b80bb1db5c4c547cf187d1bc0c6c6feb7c14af (diff) | |
download | talos-obmc-linux-cc7a938f5f308eeb6f8fe3cec28e1800aa81facb.tar.gz talos-obmc-linux-cc7a938f5f308eeb6f8fe3cec28e1800aa81facb.zip |
ARM: at91: select CONFIG_ARM_CPU_SUSPEND
The reference to cpu_resume requires the corresponding
generic code to be enabled when CONFIG_PM is set:
arch/arm/mach-at91/pm.o: In function `sama5d2_pm_init':
pm.c:(.init.text+0x5e8): undefined reference to `cpu_resume'
Fixes: 24a0f5c539f9 ("ARM: at91: pm: Add sama5d2 backup mode")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Diffstat (limited to 'arch/arm/mach-at91')
-rw-r--r-- | arch/arm/mach-at91/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-at91/Kconfig b/arch/arm/mach-at91/Kconfig index 841e924143f9..cbd959b73654 100644 --- a/arch/arm/mach-at91/Kconfig +++ b/arch/arm/mach-at91/Kconfig @@ -1,6 +1,7 @@ menuconfig ARCH_AT91 bool "Atmel SoCs" depends on ARCH_MULTI_V4T || ARCH_MULTI_V5 || ARCH_MULTI_V7 + select ARM_CPU_SUSPEND if PM select COMMON_CLK_AT91 select GPIOLIB select PINCTRL |