<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Kconfig</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>257a087c - usb: typec: Add support for Parade PS8830 Type-C Retimer</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/typec/mux/Kconfig#257a087c</link>
        <description>usb: typec: Add support for Parade PS8830 Type-C RetimerThe Parade PS8830 is a USB4, DisplayPort and Thunderbolt 4 retimer,controlled over I2C. It usually sits between a USB/DisplayPort PHYand the Type-C connector, and provides orientation and altmode handling.The boards that use this retimer are the ones featuring the QualcommSnapdragon X Elite SoCs.Add a driver with support for the following modes: - DisplayPort 4-lanes - DisplayPort 2-lanes + USB3 - USB3There is another variant of this retimer which is called PS8833. It seemsto be really similar to the PS8830, so future-proof this driver bynaming it ps883x.Signed-off-by: Abel Vesa &lt;abel.vesa@linaro.org&gt;Reviewed-by: Heikki Krogerus &lt;heikki.krogerus@linux.intel.com&gt;Link: https://lore.kernel.org/r/20250206-x1e80100-ps8830-v6-2-60b1e49cfa8d@linaro.orgSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/usb/typec/mux/Kconfig</description>
        <pubDate>Thu, 06 Feb 2025 09:28:28 +0000</pubDate>
        <dc:creator>Abel Vesa &lt;abel.vesa@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>7c561b8c - usb: typec: mux: Add support for the TUSB1046 crosspoint switch</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/typec/mux/Kconfig#7c561b8c</link>
        <description>usb: typec: mux: Add support for the TUSB1046 crosspoint switchThe TUSB1046-DCI is a USB-C linear redriver crosspoint switch, which canmux SuperSpeed lanes from a Type-C connector to a USB3.0 data lane or up to4 display port lanes.Add support for driving the TUSB1046 as a Type-C orientation switch andDisplayPort altmode multiplexer.Signed-off-by: Romain Gantois &lt;romain.gantois@bootlin.com&gt;Reviewed-by: Heikki Krogerus &lt;heikki.krogerus@linux.intel.com&gt;Reviewed-by: Dmitry Baryshkov &lt;dmitry.baryshkov@linaro.org&gt;Link: https://lore.kernel.org/r/20241024-tusb1046-v2-2-d031b1a43e6d@bootlin.comSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/usb/typec/mux/Kconfig</description>
        <pubDate>Thu, 24 Oct 2024 08:54:17 +0000</pubDate>
        <dc:creator>Romain Gantois &lt;romain.gantois@bootlin.com&gt;</dc:creator>
    </item>
<item>
        <title>650cede0 - usb: typec: ptn36502: Only select DRM_AUX_BRIDGE with OF</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/typec/mux/Kconfig#650cede0</link>
        <description>usb: typec: ptn36502: Only select DRM_AUX_BRIDGE with OFCONFIG_DRM_AUX_BRIDGE depends on CONFIG_OF but that dependency is notincluded when CONFIG_TYPEC_MUX_PTN36502 selects it, resulting in aKconfig warning when CONFIG_OF is disabled:  WARNING: unmet direct dependencies detected for DRM_AUX_BRIDGE    Depends on [n]: HAS_IOMEM [=y] &amp;&amp; DRM_BRIDGE [=y] &amp;&amp; OF [=n]    Selected by [m]:    - TYPEC_MUX_PTN36502 [=m] &amp;&amp; USB_SUPPORT [=y] &amp;&amp; TYPEC [=m] &amp;&amp; I2C [=y] &amp;&amp; (DRM [=y] || DRM [=y]=n) &amp;&amp; DRM_BRIDGE [=y]Only select CONFIG_DRM_AUX_BRIDGE when CONFIG_DRM_BRIDGE and CONFIG_OFare enabled to clear up the warning. This results in no functionalchange because prior to the refactoring that introduces this warning,ptn36502_register_bridge() returned 0 when CONFIG_OF was disabled, whichcontinues to occur with drm_aux_bridge_register() whenCONFIG_DRM_AUX_BRIDGE is not enabled.Fixes: 9dc28ea21eb4 (&quot;usb: typec: ptn36502: switch to DRM_AUX_BRIDGE&quot;)Signed-off-by: Nathan Chancellor &lt;nathan@kernel.org&gt;Reviewed-by: Luca Weiss &lt;luca.weiss@fairphone.com&gt;Reviewed-by: Heikki Krogerus &lt;heikki.krogerus@linux.intel.com&gt;Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Link: https://lore.kernel.org/r/20240328-fix-ptn36502-drm_aux_bridge-select-v1-1-85552117e26e@kernel.orgLink: https://lore.kernel.org/r/20240404123534.2708591-1-arnd@kernel.orgSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/usb/typec/mux/Kconfig</description>
        <pubDate>Thu, 28 Mar 2024 16:03:20 +0000</pubDate>
        <dc:creator>Nathan Chancellor &lt;nathan@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>9dc28ea2 - usb: typec: ptn36502: switch to DRM_AUX_BRIDGE</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/typec/mux/Kconfig#9dc28ea2</link>
        <description>usb: typec: ptn36502: switch to DRM_AUX_BRIDGESwitch to using the new DRM_AUX_BRIDGE helper to create the transparentDRM bridge device instead of handcoding corresponding functionality.Signed-off-by: Luca Weiss &lt;luca.weiss@fairphone.com&gt;Reviewed-by: Dmitry Baryshkov &lt;dmitry.baryshkov@linaro.org&gt;Reviewed-by: Heikki Krogerus &lt;heikki.krogerus@linux.intel.com&gt;Link: https://lore.kernel.org/r/20240315-ptn36502-aux-v1-1-c9d3c828ff2e@fairphone.comSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/usb/typec/mux/Kconfig</description>
        <pubDate>Fri, 15 Mar 2024 16:04:22 +0000</pubDate>
        <dc:creator>Luca Weiss &lt;luca.weiss@fairphone.com&gt;</dc:creator>
    </item>
<item>
        <title>41fe9ea1 - usb: typec: mux: Add ITE IT5205 Alternate Mode Passive MUX driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/typec/mux/Kconfig#41fe9ea1</link>
        <description>usb: typec: mux: Add ITE IT5205 Alternate Mode Passive MUX driverThe ITE IT5202 is a USB Type-C Alternate Mode Passive MUX, used formuxing the SBU lines of a Type-C port with DisplayPort altmode andalso providing an orientation switch.Reviewed-by: Dmitry Baryshkov &lt;dmitry.baryshkov@linaro.org&gt;Signed-off-by: AngeloGioacchino Del Regno &lt;angelogioacchino.delregno@collabora.com&gt;Reviewed-by: Heikki Krogerus &lt;heikki.krogerus@linux.intel.com&gt;Link: https://lore.kernel.org/r/20240122110446.140226-3-angelogioacchino.delregno@collabora.comSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/usb/typec/mux/Kconfig</description>
        <pubDate>Mon, 22 Jan 2024 11:04:46 +0000</pubDate>
        <dc:creator>AngeloGioacchino Del Regno &lt;angelogioacchino.delregno@collabora.com&gt;</dc:creator>
    </item>
<item>
        <title>36d586c0 - usb: typec: mux: add Qualcomm WCD939X USB SubSystem Altmode Mux driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/typec/mux/Kconfig#36d586c0</link>
        <description>usb: typec: mux: add Qualcomm WCD939X USB SubSystem Altmode Mux driverQualcomm WCD9390/WCD9395 is a standalone Hi-Fi audio codec IC with afunctionally separate USB SubSystem for Altmode/Analog Audio Switchaccessible over an I2C interface.It provides switching USB-C USB2.0 lines between USB and Audio Headphonesspeaker lines, and the USB-C SBU lines between DisplayPort AUX and AudioHeadphones Microphone/Ground.The Audio Headphone and Microphone data path between the Codec and theUSB-C Mux subsystems are external to the IC, thus requiring DTport-endpoint graph description to handle USB-C altmode &amp; orientationswitching for Audio Accessory Mode.Signed-off-by: Neil Armstrong &lt;neil.armstrong@linaro.org&gt;Link: https://lore.kernel.org/r/20231212-topic-sm8650-upstream-wcd939x-usbss-v2-2-38961fea5867@linaro.orgSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/usb/typec/mux/Kconfig</description>
        <pubDate>Tue, 12 Dec 2023 08:54:29 +0000</pubDate>
        <dc:creator>Neil Armstrong &lt;neil.armstrong@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>5908cbe8 - usb: typec: nb7vpq904m: Only select DRM_AUX_BRIDGE with OF</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/typec/mux/Kconfig#5908cbe8</link>
        <description>usb: typec: nb7vpq904m: Only select DRM_AUX_BRIDGE with OFCONFIG_DRM_AUX_BRIDGE depends on CONFIG_OF but that dependency is notincluded when CONFIG_TYPEC_MUX_NB7VPQ904M selects it, resulting in aKconfig warning when CONFIG_OF is disabled:  WARNING: unmet direct dependencies detected for DRM_AUX_BRIDGE    Depends on [n]: HAS_IOMEM [=y] &amp;&amp; DRM_BRIDGE [=y] &amp;&amp; OF [=n]    Selected by [y]:    - TYPEC_MUX_NB7VPQ904M [=y] &amp;&amp; USB_SUPPORT [=y] &amp;&amp; TYPEC [=y] &amp;&amp; I2C [=y] &amp;&amp; (DRM [=y] || DRM [=y]=n) &amp;&amp; DRM_BRIDGE [=y]Only select CONFIG_DRM_AUX_BRIDGE with both CONFIG_DRM_BRIDGE andCONFIG_OF to clear up the warning.Fixes: c5d296bad640 (&quot;usb: typec: nb7vpq904m: switch to DRM_AUX_BRIDGE&quot;)Signed-off-by: Nathan Chancellor &lt;nathan@kernel.org&gt;Reviewed-by: Guenter Roeck &lt;linux@roeck-us.net&gt;Reviewed-by: Heikki Krogerus &lt;heikki.krogerus@linux.intel.com&gt;Signed-off-by: Dmitry Baryshkov &lt;dmitry.baryshkov@linaro.org&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20231205-drm_aux_bridge-fixes-v1-1-d242a0ae9df4@kernel.org

            List of files:
            /linux-6.15/drivers/usb/typec/mux/Kconfig</description>
        <pubDate>Tue, 05 Dec 2023 20:13:34 +0000</pubDate>
        <dc:creator>Nathan Chancellor &lt;nathan@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>c5d296ba - usb: typec: nb7vpq904m: switch to DRM_AUX_BRIDGE</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/typec/mux/Kconfig#c5d296ba</link>
        <description>usb: typec: nb7vpq904m: switch to DRM_AUX_BRIDGESwitch to using the new DRM_AUX_BRIDGE helper to create thetransparent DRM bridge device instead of handcoding correspondingfunctionality.Reviewed-by: Heikki Krogerus &lt;heikki.krogerus@linux.intel.com&gt;Acked-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;Signed-off-by: Dmitry Baryshkov &lt;dmitry.baryshkov@linaro.org&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20231203114333.1305826-4-dmitry.baryshkov@linaro.org

            List of files:
            /linux-6.15/drivers/usb/typec/mux/Kconfig</description>
        <pubDate>Sun, 03 Dec 2023 11:43:30 +0000</pubDate>
        <dc:creator>Dmitry Baryshkov &lt;dmitry.baryshkov@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>8e99dc78 - usb: typec: add support for PTN36502 redriver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/typec/mux/Kconfig#8e99dc78</link>
        <description>usb: typec: add support for PTN36502 redriverAdd a driver for the NXP PTN36502 Type-C USB 3.1 Gen 1 and DisplayPortv1.2 combo redriver.Reviewed-by: Heikki Krogerus &lt;heikki.krogerus@linux.intel.com&gt;Signed-off-by: Luca Weiss &lt;luca.weiss@fairphone.com&gt;Link: https://lore.kernel.org/r/20231020-ptn36502-v2-2-b37a337d463e@fairphone.comSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/usb/typec/mux/Kconfig</description>
        <pubDate>Fri, 20 Oct 2023 10:35:47 +0000</pubDate>
        <dc:creator>Luca Weiss &lt;luca.weiss@fairphone.com&gt;</dc:creator>
    </item>
<item>
        <title>ef7c4d8a - usb: typec: mux: intel: Add dependency on USB_COMMON</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/typec/mux/Kconfig#ef7c4d8a</link>
        <description>usb: typec: mux: intel: Add dependency on USB_COMMONThis fixes an undefined reference to `usb_debug_root&apos; issuewhen USB_COMMON is not enabled.Fixes: 0a453dc9f260 (&quot;usb: typec: intel_pmc_mux: Expose IOM port status to debugfs&quot;)Reported-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Closes: https://lore.kernel.org/lkml/c3bb8781-676d-2448-cfbb-62e29f1f570b@infradead.org/Cc: Rajat Khandelwal &lt;rajat.khandelwal@linux.intel.com&gt;Signed-off-by: Heikki Krogerus &lt;heikki.krogerus@linux.intel.com&gt;Tested-by: Randy Dunlap &lt;rdunlap@infradead.org&gt; # build-testedAcked-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Link: https://lore.kernel.org/r/20230731131210.43158-1-heikki.krogerus@linux.intel.comSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/usb/typec/mux/Kconfig</description>
        <pubDate>Mon, 31 Jul 2023 13:12:10 +0000</pubDate>
        <dc:creator>Heikki Krogerus &lt;heikki.krogerus@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>256a02e2 - usb: typec: nb7vpq904m: fix CONFIG_DRM dependency</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/typec/mux/Kconfig#256a02e2</link>
        <description>usb: typec: nb7vpq904m: fix CONFIG_DRM dependencyWith the following config set:CONFIG_DRM=mCONFIG_DRM_PANEL=yCONFIG_DRM_BRIDGE=yCONFIG_DRM_PANEL_BRIDGE=yCONFIG_TYPEC_MUX_NB7VPQ904M=yvmlinux fails on the following symbols:  ld.lld: error: undefined symbol: devm_drm_bridge_add  ld.lld: error: undefined symbol: devm_drm_of_get_bridgeAdd dependendy on DRM || DRM=no since CONFIG_DRM dependency is optionaland guarded by:IS_ENABLED(CONFIG_OF) &amp;&amp; IS_ENABLED(CONFIG_DRM_PANEL_BRIDGE)in the drive.Also add &quot;select DRM_PANEL_BRIDGE if DRM&quot; to clarify DRM_PANEL_BRIDGEis required if CONFIG_DRM is enabled.Fixes: 88d8f3ac9c67 (&quot;usb: typec: add support for the nb7vpq904m Type-C Linear Redriver&quot;)Reported-by: Arnd Bergmann &lt;arnd@kernel.org&gt;Suggested-by: Arnd Bergmann &lt;arnd@kernel.org&gt;Signed-off-by: Neil Armstrong &lt;neil.armstrong@linaro.org&gt;Message-ID: &lt;20230622-topic-sm8x50-upstream-redriver-config-fix-v1-1-005ab6f4d1f5@linaro.org&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/usb/typec/mux/Kconfig</description>
        <pubDate>Thu, 22 Jun 2023 16:16:26 +0000</pubDate>
        <dc:creator>Neil Armstrong &lt;neil.armstrong@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>88d8f3ac - usb: typec: add support for the nb7vpq904m Type-C Linear Redriver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/typec/mux/Kconfig#88d8f3ac</link>
        <description>usb: typec: add support for the nb7vpq904m Type-C Linear RedriverAdd support for the ON Semiconductor NB7VPQ904M Type-C USB SuperSpeedand DisplayPort ALT Mode Linear Redriver chip found on some deviceswith a Type-C port.The redriver compensates ultra High-Speeed DisplayPort and USBSuper Speed signal integrity losses mainly due to PCB &amp; transmissioncables.The redriver doesn&apos;t support SuperSpeed lines swapping, butcan support Type-C SBU lines swapping.Signed-off-by: Dmitry Baryshkov &lt;dmitry.baryshkov@linaro.org&gt;Reviewed-by: Heikki Krogerus &lt;heikki.krogerus@linux.intel.com&gt;Signed-off-by: Neil Armstrong &lt;neil.armstrong@linaro.org&gt;Message-ID: &lt;20230601-topic-sm8x50-upstream-redriver-v4-2-91d5820f3a03@linaro.org&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/usb/typec/mux/Kconfig</description>
        <pubDate>Thu, 15 Jun 2023 10:32:55 +0000</pubDate>
        <dc:creator>Dmitry Baryshkov &lt;dmitry.baryshkov@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>065ded31 - usb: typec: mux: Introduce GPIO-based SBU mux</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/typec/mux/Kconfig#065ded31</link>
        <description>usb: typec: mux: Introduce GPIO-based SBU muxA design found in various Qualcomm-based boards is to use a USB switch,controlled through a pair of GPIO lines to connect, disconnect andswitch the orientation of the SBU lines in USB Type-C applications.This introduces a generic driver, which implements the typec_switch andtypec_mux interfaces to perform these operations.Reviewed-by: Heikki Krogerus &lt;heikki.krogerus@linux.intel.com&gt;Signed-off-by: Bjorn Andersson &lt;bjorn.andersson@linaro.org&gt;Signed-off-by: Bjorn Andersson &lt;quic_bjorande@quicinc.com&gt;Link: https://lore.kernel.org/r/20230113041115.4189210-2-quic_bjorande@quicinc.comSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/usb/typec/mux/Kconfig</description>
        <pubDate>Fri, 13 Jan 2023 04:11:15 +0000</pubDate>
        <dc:creator>Bjorn Andersson &lt;bjorn.andersson@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>1dc24632 - usb: typec: mux: Add On Semi fsa4480 driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/typec/mux/Kconfig#1dc24632</link>
        <description>usb: typec: mux: Add On Semi fsa4480 driverThe ON Semiconductor FSA4480 is a USB Type-C port multimedia switch withsupport for analog audio headsets. It allows sharing a common USB Type-Cport to pass USB2.0 signal, analog audio, sideband use wires and analogmicrophone signal.Due to lacking upstream audio support for testing, the audio muxing isleft untouched, but implementation of muxing the SBU lines is providedas a pair of Type-C mux and switch devices. This provides the necessarysupport for enabling the DisplayPort altmode on devices with thiscircuit.Reviewed-by: Heikki Krogerus &lt;heikki.krogerus@linux.intel.com&gt;Signed-off-by: Bjorn Andersson &lt;bjorn.andersson@linaro.org&gt;Link: https://lore.kernel.org/r/20220422222351.1297276-8-bjorn.andersson@linaro.orgSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/usb/typec/mux/Kconfig</description>
        <pubDate>Fri, 22 Apr 2022 22:23:51 +0000</pubDate>
        <dc:creator>Bjorn Andersson &lt;bjorn.andersson@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>fca3d669 - usb: typec: intel_pmc_mux: Add dependency on ACPI</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/typec/mux/Kconfig#fca3d669</link>
        <description>usb: typec: intel_pmc_mux: Add dependency on ACPISince the driver now needs to find the IOM ACPI node, thedriver depends on ACPI. Without the dependency set, thedriver will only fail to compile when ACPI is not enabled.Fixes: 43d596e32276 (&quot;usb: typec: intel_pmc_mux: Check the port status before connect&quot;)Reported-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Signed-off-by: Heikki Krogerus &lt;heikki.krogerus@linux.intel.com&gt;Link: https://lore.kernel.org/r/20200916091102.27118-2-heikki.krogerus@linux.intel.comSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/usb/typec/mux/Kconfig</description>
        <pubDate>Wed, 16 Sep 2020 09:11:00 +0000</pubDate>
        <dc:creator>Heikki Krogerus &lt;heikki.krogerus@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>b6285149 - usb: typec: mux: Convert the Intel PMC Mux driver to use new SCU IPC API</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/typec/mux/Kconfig#b6285149</link>
        <description>usb: typec: mux: Convert the Intel PMC Mux driver to use new SCU IPC APIConvert the driver to use the new SCU IPC API. This allows us to get ridof the duplicate PMC IPC implementation which is now covered in SCU IPCdriver.Signed-off-by: Heikki Krogerus &lt;heikki.krogerus@linux.intel.com&gt;Signed-off-by: Mika Westerberg &lt;mika.westerberg@linux.intel.com&gt;Signed-off-by: Lee Jones &lt;lee.jones@linaro.org&gt;

            List of files:
            /linux-6.15/drivers/usb/typec/mux/Kconfig</description>
        <pubDate>Thu, 16 Apr 2020 08:15:46 +0000</pubDate>
        <dc:creator>Heikki Krogerus &lt;heikki.krogerus@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>6701adfa - usb: typec: driver for Intel PMC mux control</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/typec/mux/Kconfig#6701adfa</link>
        <description>usb: typec: driver for Intel PMC mux controlThe Intel PMC microcontroller on the latest Intel platformshas a new function that allows configuration of the USBMultiplexer/DeMultiplexer switches that are under thecontrol of the PMC.The Intel PMC mux control (aka. mux-agent) can be used forswapping the USB data role and for entering alternate modes,DisplayPort or Thunderbolt3.Signed-off-by: Heikki Krogerus &lt;heikki.krogerus@linux.intel.com&gt;Link: https://lore.kernel.org/r/20200302135353.56659-10-heikki.krogerus@linux.intel.comSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/usb/typec/mux/Kconfig</description>
        <pubDate>Mon, 02 Mar 2020 13:53:53 +0000</pubDate>
        <dc:creator>Heikki Krogerus &lt;heikki.krogerus@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>cae8dc3b - USB: add missing SPDX lines to Kconfig and Makefiles</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/typec/mux/Kconfig#cae8dc3b</link>
        <description>USB: add missing SPDX lines to Kconfig and MakefilesThere are a few remaining drivers/usb/ files that do not have SPDXidentifiers in them, all of these are either Kconfig or Makefiles.  Addthe correct GPL-2.0 identifier to them to make scanning tools happy.Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/usb/typec/mux/Kconfig</description>
        <pubDate>Thu, 17 Jan 2019 08:23:50 +0000</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>da95cc1d - usb: typec: driver for Pericom PI3USB30532 Type-C cross switch</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/typec/mux/Kconfig#da95cc1d</link>
        <description>usb: typec: driver for Pericom PI3USB30532 Type-C cross switchAdd a driver for the Pericom PI3USB30532 Type-C cross switch /mux chip found on some devices with a Type-C port.Signed-off-by: Hans de Goede &lt;hdegoede@redhat.com&gt;Reviewed-by: Andy Shevchenko &lt;andy.shevchenko@gmail.com&gt;Signed-off-by: Heikki Krogerus &lt;heikki.krogerus@linux.intel.com&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/usb/typec/mux/Kconfig</description>
        <pubDate>Tue, 20 Mar 2018 12:57:11 +0000</pubDate>
        <dc:creator>Hans de Goede &lt;hdegoede@redhat.com&gt;</dc:creator>
    </item>
</channel>
</rss>
