mirror of
https://github.com/torvalds/linux.git
synced 2024-12-11 21:52:04 +00:00
1e3e559f8d
Exynos ChipID and ASV (Adaptive Supply Voltage) driver is not essential to system boot and it can successfully be built and loaded as module. This makes core kernel image smaller and reduces the memory footprint when multi-platform kernel is booted on non-Exynos board. Usually it is also distro-friendly. Add multiple authors of the driver since its conversion from mach-exynos, ordered alphabetically by first name. Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> Reviewed-by: Sylwester Nawrocki <snawrocki@kernel.org> Tested-by: Sylwester Nawrocki <snawrocki@kernel.org> Reviewed-by: Alim Akhtar <alim.akhtar@samsung.com> Tested-by: Alim Akhtar <alim.akhtar@samsung.com> Link: https://lore.kernel.org/r/20210919093114.35987-3-krzysztof.kozlowski@canonical.com
16 lines
553 B
Makefile
16 lines
553 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
obj-$(CONFIG_EXYNOS_ASV_ARM) += exynos5422-asv.o
|
|
obj-$(CONFIG_EXYNOS_CHIPID) += exynos_chipid.o
|
|
exynos_chipid-y += exynos-chipid.o exynos-asv.o
|
|
|
|
obj-$(CONFIG_EXYNOS_PMU) += exynos-pmu.o
|
|
|
|
obj-$(CONFIG_EXYNOS_PMU_ARM_DRIVERS) += exynos3250-pmu.o exynos4-pmu.o \
|
|
exynos5250-pmu.o exynos5420-pmu.o
|
|
obj-$(CONFIG_EXYNOS_PM_DOMAINS) += pm_domains.o
|
|
obj-$(CONFIG_EXYNOS_REGULATOR_COUPLER) += exynos-regulator-coupler.o
|
|
|
|
obj-$(CONFIG_SAMSUNG_PM_CHECK) += s3c-pm-check.o
|
|
obj-$(CONFIG_SAMSUNG_PM_DEBUG) += s3c-pm-debug.o
|