fa082a7cf5
Move Intel PMC core driver to intel sub-directory to improve readability. Signed-off-by: Kate Hsuan <hpa@redhat.com> Reviewed-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Reviewed-by: Rajneesh Bhardwaj <irenic.rajneesh@gmail.com> Link: https://lore.kernel.org/r/20210820110458.73018-7-andriy.shevchenko@linux.intel.com Signed-off-by: Hans de Goede <hdegoede@redhat.com>
22 lines
755 B
Makefile
22 lines
755 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for drivers/platform/x86/intel
|
|
# Intel x86 Platform-Specific Drivers
|
|
#
|
|
|
|
obj-$(CONFIG_INTEL_SAR_INT1092) += int1092/
|
|
obj-$(CONFIG_INTEL_CHT_INT33FE) += int33fe/
|
|
obj-$(CONFIG_INTEL_SKL_INT3472) += int3472/
|
|
obj-$(CONFIG_INTEL_PMC_CORE) += pmc/
|
|
obj-$(CONFIG_INTEL_PMT_CLASS) += pmt/
|
|
|
|
# Intel PMIC / PMC / P-Unit drivers
|
|
intel_bxtwc_tmu-y := bxtwc_tmu.o
|
|
obj-$(CONFIG_INTEL_BXTWC_PMIC_TMU) += intel_bxtwc_tmu.o
|
|
intel_chtdc_ti_pwrbtn-y := chtdc_ti_pwrbtn.o
|
|
obj-$(CONFIG_INTEL_CHTDC_TI_PWRBTN) += intel_chtdc_ti_pwrbtn.o
|
|
intel_mrfld_pwrbtn-y := mrfld_pwrbtn.o
|
|
obj-$(CONFIG_INTEL_MRFLD_PWRBTN) += intel_mrfld_pwrbtn.o
|
|
intel_punit_ipc-y := punit_ipc.o
|
|
obj-$(CONFIG_INTEL_PUNIT_IPC) += intel_punit_ipc.o
|