diff options
author | Shyam Sundar S K <Shyam-sundar.S-k@amd.com> | 2022-06-08 22:32:12 +0300 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2022-06-22 12:57:55 +0300 |
commit | ef233eafe5adc54ddc39a1b6cc483dddc744bf97 (patch) | |
tree | 433e204ed379f23e671b15c37f900883533f4164 /drivers/platform/x86/amd/Makefile | |
parent | 5b54b4d4b46348265bf1ceb001473f42c71d8e4a (diff) | |
download | linux-ef233eafe5adc54ddc39a1b6cc483dddc744bf97.tar.xz |
platform/x86: Move AMD platform drivers to separate directory
Currently, AMD supported platform drivers are grouped under generic "x86"
folder structure. Move the current drivers (amd-pmc and amd_hsmp) to a
separate directory. This would also mean the newer driver submissions to
pdx86 subsystem in the future will also land in AMD specific directory.
Reviewed-by: Naveen Krishna Chatradhi <NaveenKrishna.Chatradhi@amd.com>
Tested-by: Suma Hegde <suma.hegde@amd.com>
Signed-off-by: Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
Link: https://lore.kernel.org/r/20220608193212.2827257-1-Shyam-sundar.S-k@amd.com
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Diffstat (limited to 'drivers/platform/x86/amd/Makefile')
-rw-r--r-- | drivers/platform/x86/amd/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/platform/x86/amd/Makefile b/drivers/platform/x86/amd/Makefile new file mode 100644 index 000000000000..a03fbb08e808 --- /dev/null +++ b/drivers/platform/x86/amd/Makefile @@ -0,0 +1,10 @@ +# SPDX-License-Identifier: GPL-2.0 +# +# Makefile for drivers/platform/x86/amd +# AMD x86 Platform-Specific Drivers +# + +amd-pmc-y := pmc.o +obj-$(CONFIG_AMD_PMC) += amd-pmc.o +amd_hsmp-y := hsmp.o +obj-$(CONFIG_AMD_HSMP) += amd_hsmp.o |