This series resolves the cyclic dependency error which was introduced by commit 63cd78617350 ("usb: Link the ports to the connectors they are attached to") which lead to it being reverted. The approach here is to use a notifier to link a new Type C port to pre-existing USB ports instead of calling an iterator of usb ports from the Type C connector class. This allows commit 63cd78617350 ("usb: Link the ports to the connectors they are attached to") to then be submitted without any depmod cyclic dependency error. The final patch removes the usb port iterator since it is no longer needed. Heikki Krogerus (1): usb: Link the ports to the connectors they are attached to Prashant Malani (3): usb: typec: Add port registration notifier usb: Use notifier to link Type C ports Revert "usb: Iterator for ports" Documentation/ABI/testing/sysfs-bus-usb | 9 +++++ drivers/usb/core/hub.h | 3 ++ drivers/usb/core/port.c | 20 +++++++++++ drivers/usb/core/usb.c | 46 ------------------------- drivers/usb/typec/class.c | 33 ++++++++++++++++-- drivers/usb/typec/class.h | 1 - drivers/usb/typec/port-mapper.c | 41 ---------------------- include/linux/usb.h | 9 ----- include/linux/usb/typec.h | 13 +++++++ 9 files changed, 75 insertions(+), 100 deletions(-) -- 2.34.0.rc2.393.gf8c9666880-goog