[ Upstream commit13bbe1c83b] The Kconfig for platforms/arm64 has 'depends on ARM64 || COMPILE_TEST'. However due to Makefile having just obj-$(CONFIG_ARM64) the subdir will not be descended for !ARM64 platforms and thus the drivers won't get built. This breaks modular builds of other driver drivers which depend on arm64 platform drivers. Reported-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Fixes:363c8aea25("platform: Add ARM64 platform directory") Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Link: https://lore.kernel.org/r/20240624-ucsi-yoga-ec-driver-v9-1-53af411a9bd6@linaro.org Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
15 lines
420 B
Makefile
15 lines
420 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for linux/drivers/platform
|
|
#
|
|
|
|
obj-$(CONFIG_X86) += x86/
|
|
obj-$(CONFIG_LOONGARCH) += loongarch/
|
|
obj-$(CONFIG_MELLANOX_PLATFORM) += mellanox/
|
|
obj-$(CONFIG_MIPS) += mips/
|
|
obj-$(CONFIG_OLPC_EC) += olpc/
|
|
obj-$(CONFIG_GOLDFISH) += goldfish/
|
|
obj-$(CONFIG_CHROME_PLATFORMS) += chrome/
|
|
obj-$(CONFIG_SURFACE_PLATFORMS) += surface/
|
|
obj-$(CONFIG_ARM64_PLATFORM_DEVICES) += arm64/
|