mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-26 14:17:26 -04:00
Here is the set of changes for the driver core for 5.17-rc1. Lots of little things here, including: - kobj_type cleanups - auxiliary_bus documentation updates - auxiliary_device conversions for some drivers (relevant subsystems all have provided acks for these) - kernfs lock contention reduction for some workloads - other tiny cleanups and changes. All of these have been in linux-next for a while with no reported issues. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -----BEGIN PGP SIGNATURE----- iG0EABECAC0WIQT0tgzFv3jCIUoxPcsxR9QN2y37KQUCYd7deA8cZ3JlZ0Brcm9h aC5jb20ACgkQMUfUDdst+ym8ngCgw0ANwrRPE5b1dthEmfU2f8Knk5kAn0pHQv6R VRZJypgNfU/Pt0ykstZD =CO9J -----END PGP SIGNATURE----- Merge tag 'driver-core-5.17-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core Pull driver core updates from Greg KH: "Here is the set of changes for the driver core for 5.17-rc1. Lots of little things here, including: - kobj_type cleanups - auxiliary_bus documentation updates - auxiliary_device conversions for some drivers (relevant subsystems all have provided acks for these) - kernfs lock contention reduction for some workloads - other tiny cleanups and changes. All of these have been in linux-next for a while with no reported issues" * tag 'driver-core-5.17-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core: (43 commits) kobject documentation: remove default_attrs information drivers/firmware: Add missing platform_device_put() in sysfb_create_simplefb debugfs: lockdown: Allow reading debugfs files that are not world readable driver core: Make bus notifiers in right order in really_probe() driver core: Move driver_sysfs_remove() after driver_sysfs_add() firmware: edd: remove empty default_attrs array firmware: dmi-sysfs: use default_groups in kobj_type qemu_fw_cfg: use default_groups in kobj_type firmware: memmap: use default_groups in kobj_type sh: sq: use default_groups in kobj_type headers/uninline: Uninline single-use function: kobject_has_children() devtmpfs: mount with noexec and nosuid driver core: Simplify async probe test code by using ktime_ms_delta() nilfs2: use default_groups in kobj_type kobject: remove kset from struct kset_uevent_ops callbacks driver core: make kobj_type constant. driver core: platform: document registration-failure requirement vdpa/mlx5: Use auxiliary_device driver data helpers net/mlx5e: Use auxiliary_device driver data helpers soundwire: intel: Use auxiliary_device driver data helpers ...
52 lines
1.9 KiB
Makefile
52 lines
1.9 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for drivers/platform/x86/intel
|
|
# Intel x86 Platform-Specific Drivers
|
|
#
|
|
|
|
obj-$(CONFIG_INTEL_ATOMISP2_PDX86) += atomisp2/
|
|
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/
|
|
obj-$(CONFIG_INTEL_SPEED_SELECT_INTERFACE) += speed_select_if/
|
|
obj-$(CONFIG_INTEL_TELEMETRY) += telemetry/
|
|
obj-$(CONFIG_INTEL_WMI) += wmi/
|
|
|
|
# Intel input drivers
|
|
intel-hid-y := hid.o
|
|
obj-$(CONFIG_INTEL_HID_EVENT) += intel-hid.o
|
|
intel-vbtn-y := vbtn.o
|
|
obj-$(CONFIG_INTEL_VBTN) += intel-vbtn.o
|
|
|
|
# Intel miscellaneous drivers
|
|
obj-$(CONFIG_INTEL_ISHTP_ECLITE) += ishtp_eclite.o
|
|
intel_int0002_vgpio-y := int0002_vgpio.o
|
|
obj-$(CONFIG_INTEL_INT0002_VGPIO) += intel_int0002_vgpio.o
|
|
intel_oaktrail-y := oaktrail.o
|
|
obj-$(CONFIG_INTEL_OAKTRAIL) += intel_oaktrail.o
|
|
intel_vsec-y := vsec.o
|
|
obj-$(CONFIG_INTEL_VSEC) += intel_vsec.o
|
|
|
|
# Intel PMIC / PMC / P-Unit drivers
|
|
intel_bxtwc_tmu-y := bxtwc_tmu.o
|
|
obj-$(CONFIG_INTEL_BXTWC_PMIC_TMU) += intel_bxtwc_tmu.o
|
|
intel_crystal_cove_charger-y := crystal_cove_charger.o
|
|
obj-$(CONFIG_X86_ANDROID_TABLETS) += intel_crystal_cove_charger.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
|
|
|
|
# Intel Uncore drivers
|
|
intel-rst-y := rst.o
|
|
obj-$(CONFIG_INTEL_RST) += intel-rst.o
|
|
intel-smartconnect-y := smartconnect.o
|
|
obj-$(CONFIG_INTEL_SMARTCONNECT) += intel-smartconnect.o
|
|
intel_turbo_max_3-y := turbo_max_3.o
|
|
obj-$(CONFIG_INTEL_TURBO_MAX_3) += intel_turbo_max_3.o
|
|
intel-uncore-frequency-y := uncore-frequency.o
|
|
obj-$(CONFIG_INTEL_UNCORE_FREQ_CONTROL) += intel-uncore-frequency.o
|