Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

usb: typec: STUSB160X should select REGMAP_I2C

REGMAP_I2C is not a user visible kconfig symbol so driver configs
should not "depend on" it. They should depend on I2C and then
select REGMAP_I2C.

If this worked, it was only because some other driver had set/enabled
REGMAP_I2C.

Fixes: da0cb6310094 ("usb: typec: add support for STUSB160x Type-C controller family")
Cc: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Cc: Amelie Delaunay <amelie.delaunay@st.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: linux-usb@vger.kernel.org
Reviewed-by: Amelie Delaunay <amelie.delaunay@foss.st.com>
Reviewed-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Link: https://lore.kernel.org/r/20211015013609.7300-1-rdunlap@infradead.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Randy Dunlap and committed by
Greg Kroah-Hartman
8ef1e587 05c8f1b6

+2 -2
+2 -2
drivers/usb/typec/Kconfig
··· 65 65 66 66 config TYPEC_STUSB160X 67 67 tristate "STMicroelectronics STUSB160x Type-C controller driver" 68 - depends on I2C 69 - depends on REGMAP_I2C 70 68 depends on USB_ROLE_SWITCH || !USB_ROLE_SWITCH 69 + depends on I2C 70 + select REGMAP_I2C 71 71 help 72 72 Say Y or M here if your system has STMicroelectronics STUSB160x 73 73 Type-C port controller.