mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
a908a71669
The jack handling for arizona codecs is being refactored so that it is done directly by the codec drivers, instead of having an extcon-driver bind to a separate "arizona-extcon" child-device for this. drivers/mfd/arizona-core.c has already been updated to no longer instantiate an "arizona-extcon" child-device for the arizona codecs. This means that the "arizona-extcon" driver is no longer useful (there are no longer any devices for it to bind to). This commit drops the extcon Kconfig / Makefile bits and moves drivers/extcon/extcon-arizona.c to sound/soc/codecs/arizona-jack.c . This is a preparation patch for converting the arizona extcon-driver into a helper library for letting the arizona codec-drivers directly report jack state through the standard sound/soc/soc-jack.c functions. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Acked-by: Charles Keepax <ckeepax@opensource.cirrus.com> Tested-by: Charles Keepax <ckeepax@opensource.cirrus.com> Acked-by: Chanwoo Choi <cw00.choi@samsung.com> Signed-off-by: Lee Jones <lee.jones@linaro.org>
28 lines
1.2 KiB
Makefile
28 lines
1.2 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
# Makefile for external connector class (extcon) devices
|
|
#
|
|
|
|
obj-$(CONFIG_EXTCON) += extcon-core.o
|
|
extcon-core-objs += extcon.o devres.o
|
|
obj-$(CONFIG_EXTCON_ADC_JACK) += extcon-adc-jack.o
|
|
obj-$(CONFIG_EXTCON_AXP288) += extcon-axp288.o
|
|
obj-$(CONFIG_EXTCON_FSA9480) += extcon-fsa9480.o
|
|
obj-$(CONFIG_EXTCON_GPIO) += extcon-gpio.o
|
|
obj-$(CONFIG_EXTCON_INTEL_INT3496) += extcon-intel-int3496.o
|
|
obj-$(CONFIG_EXTCON_INTEL_CHT_WC) += extcon-intel-cht-wc.o
|
|
obj-$(CONFIG_EXTCON_INTEL_MRFLD) += extcon-intel-mrfld.o
|
|
obj-$(CONFIG_EXTCON_MAX14577) += extcon-max14577.o
|
|
obj-$(CONFIG_EXTCON_MAX3355) += extcon-max3355.o
|
|
obj-$(CONFIG_EXTCON_MAX77693) += extcon-max77693.o
|
|
obj-$(CONFIG_EXTCON_MAX77843) += extcon-max77843.o
|
|
obj-$(CONFIG_EXTCON_MAX8997) += extcon-max8997.o
|
|
obj-$(CONFIG_EXTCON_PALMAS) += extcon-palmas.o
|
|
obj-$(CONFIG_EXTCON_PTN5150) += extcon-ptn5150.o
|
|
obj-$(CONFIG_EXTCON_QCOM_SPMI_MISC) += extcon-qcom-spmi-misc.o
|
|
obj-$(CONFIG_EXTCON_RT8973A) += extcon-rt8973a.o
|
|
obj-$(CONFIG_EXTCON_SM5502) += extcon-sm5502.o
|
|
obj-$(CONFIG_EXTCON_USB_GPIO) += extcon-usb-gpio.o
|
|
obj-$(CONFIG_EXTCON_USBC_CROS_EC) += extcon-usbc-cros-ec.o
|
|
obj-$(CONFIG_EXTCON_USBC_TUSB320) += extcon-usbc-tusb320.o
|