diff options
author | Arnd Bergmann <arnd@arndb.de> | 2023-07-26 13:49:36 +0200 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2023-07-26 14:41:01 +0200 |
commit | 7ed363cd8d0a3e4fbe3c37b7458420f82ef9a106 (patch) | |
tree | 57b56425a5d4ade9d224c2c9d685da1e207d56fd /drivers/soc/Makefile | |
parent | 00eb53b08cf5f4d8919a49c10ffd122647478aae (diff) | |
download | linux-stable-7ed363cd8d0a3e4fbe3c37b7458420f82ef9a106.tar.gz linux-stable-7ed363cd8d0a3e4fbe3c37b7458420f82ef9a106.tar.bz2 linux-stable-7ed363cd8d0a3e4fbe3c37b7458420f82ef9a106.zip |
genpd: move owl-sps-helper.c from drivers/soc
Moving only one of the two files in drivers/soc/actions to drivers/genpd
caused a link failure in allmodconfig, as drivers/genpd is entered
for compile testing, but drivers/soc/actions accidentally got skipped:
x86_64-linux-gnu-ld: vmlinux.o: in function `owl_sps_set_power':
owl-sps.c:(.text+0x16e259d): undefined reference to `owl_sps_set_pg'
Move the other one as well to allow build testing to work correctly.
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'drivers/soc/Makefile')
-rw-r--r-- | drivers/soc/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/soc/Makefile b/drivers/soc/Makefile index efdcd42f68cb..708eaad8f590 100644 --- a/drivers/soc/Makefile +++ b/drivers/soc/Makefile @@ -3,7 +3,6 @@ # Makefile for the Linux Kernel SOC specific device drivers. # -obj-$(CONFIG_ARCH_ACTIONS) += actions/ obj-y += apple/ obj-y += aspeed/ obj-$(CONFIG_ARCH_AT91) += atmel/ |