mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-05 01:54:09 +08:00
93ce5e0231
Newer AMD SOCs use SFH1.1 memory access with new PCI-id. Hence add new sfh1_1 sub directory to implement SFH1.1 functionality by defining new PCI id, interface functions, descriptor functions and handlers which invokes sfh1.1. Signed-off-by: Basavaraj Natikar <Basavaraj.Natikar@amd.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
17 lines
477 B
Makefile
17 lines
477 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
#
|
|
# Makefile - AMD SFH HID drivers
|
|
# Copyright (c) 2019-2020, Advanced Micro Devices, Inc.
|
|
#
|
|
#
|
|
obj-$(CONFIG_AMD_SFH_HID) += amd_sfh.o
|
|
amd_sfh-objs := amd_sfh_hid.o
|
|
amd_sfh-objs += amd_sfh_client.o
|
|
amd_sfh-objs += amd_sfh_pcie.o
|
|
amd_sfh-objs += hid_descriptor/amd_sfh_hid_desc.o
|
|
amd_sfh-objs += sfh1_1/amd_sfh_init.o
|
|
amd_sfh-objs += sfh1_1/amd_sfh_interface.o
|
|
amd_sfh-objs += sfh1_1/amd_sfh_desc.o
|
|
|
|
ccflags-y += -I $(srctree)/$(src)/
|