<?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>fe145645 - can: usb: Kconfig: Fix list of devices for esd_usb driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/can/usb/Kconfig#fe145645</link>
        <description>can: usb: Kconfig: Fix list of devices for esd_usb driverThe CAN-USB/3-FD was missing on the list of supported devices.Signed-off-by: Stefan M&#228;tje &lt;stefan.maetje@esd.eu&gt;Link: https://patch.msgid.link/20240910170236.2287637-1-stefan.maetje@esd.euSigned-off-by: Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;

            List of files:
            /linux-6.15/drivers/net/can/usb/Kconfig</description>
        <pubDate>Tue, 10 Sep 2024 17:02:36 +0000</pubDate>
        <dc:creator>Stefan M&#228;tje &lt;stefan.maetje@esd.eu&gt;</dc:creator>
    </item>
<item>
        <title>0135c4c6 - can: kvaser_usb: Add support for Kvaser Mini PCIe 1xCAN</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/can/usb/Kconfig#0135c4c6</link>
        <description>can: kvaser_usb: Add support for Kvaser Mini PCIe 1xCANAdd support for Kvaser Mini PCIe 1xCAN, based on the hydra platform.Signed-off-by: Martin Jocic &lt;martin.jocic@kvaser.com&gt;Link: https://lore.kernel.org/all/20240612141946.3352364-4-martin.jocic@kvaser.comSigned-off-by: Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;

            List of files:
            /linux-6.15/drivers/net/can/usb/Kconfig</description>
        <pubDate>Wed, 12 Jun 2024 14:19:46 +0000</pubDate>
        <dc:creator>Martin Jocic &lt;martin.jocic@kvaser.com&gt;</dc:creator>
    </item>
<item>
        <title>96a669a1 - can: kvaser_usb: Add support for Kvaser USBcan Pro 5xCAN</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/can/usb/Kconfig#96a669a1</link>
        <description>can: kvaser_usb: Add support for Kvaser USBcan Pro 5xCANAdd support for Kvaser USBcan Pro 5xCAN, based on the hydra platform.Signed-off-by: Martin Jocic &lt;martin.jocic@kvaser.com&gt;Link: https://lore.kernel.org/all/20240612141946.3352364-3-martin.jocic@kvaser.comSigned-off-by: Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;

            List of files:
            /linux-6.15/drivers/net/can/usb/Kconfig</description>
        <pubDate>Wed, 12 Jun 2024 14:19:45 +0000</pubDate>
        <dc:creator>Martin Jocic &lt;martin.jocic@kvaser.com&gt;</dc:creator>
    </item>
<item>
        <title>2851d357 - can: kvaser_usb: Add support for Vining 800</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/can/usb/Kconfig#2851d357</link>
        <description>can: kvaser_usb: Add support for Vining 800Add support for Vining 800, a branded device based on the hydraplatform.Signed-off-by: Martin Jocic &lt;martin.jocic@kvaser.com&gt;Link: https://lore.kernel.org/all/20240612141946.3352364-2-martin.jocic@kvaser.comSigned-off-by: Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;

            List of files:
            /linux-6.15/drivers/net/can/usb/Kconfig</description>
        <pubDate>Wed, 12 Jun 2024 14:19:44 +0000</pubDate>
        <dc:creator>Martin Jocic &lt;martin.jocic@kvaser.com&gt;</dc:creator>
    </item>
<item>
        <title>0b40cd9b - can: kvaser_usb: Add support for Leaf v3</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/can/usb/Kconfig#0b40cd9b</link>
        <description>can: kvaser_usb: Add support for Leaf v3Add support for Kvaser Leaf v3, based on the hydra platform.Signed-off-by: Jimmy Assarsson &lt;extja@kvaser.com&gt;Link: https://lore.kernel.org/all/20240223095217.43783-1-extja@kvaser.comSigned-off-by: Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;

            List of files:
            /linux-6.15/drivers/net/can/usb/Kconfig</description>
        <pubDate>Fri, 23 Feb 2024 09:52:17 +0000</pubDate>
        <dc:creator>Jimmy Assarsson &lt;extja@kvaser.com&gt;</dc:creator>
    </item>
<item>
        <title>24bc41b4 - can: gs_usb: convert to NAPI/rx-offload to avoid OoO reception</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/can/usb/Kconfig#24bc41b4</link>
        <description>can: gs_usb: convert to NAPI/rx-offload to avoid OoO receptionThe driver used to pass received CAN frames/skbs to the network stackwith netif_rx(). In netif_rx() the skbs are queued to the local CPU.If IRQs are handled in round robin, OoO packets may occur.To avoid out-of-order reception convert the driver from netif_rx() toNAPI.For USB devices with timestamping support use the rx-offload helpercan_rx_offload_queue_timestamp() for the RX, andcan_rx_offload_get_echo_skb_queue_timestamp() for the TX path. Deviceswithout timestamping support use can_rx_offload_queue_tail() for RX,and can_rx_offload_get_echo_skb_queue_tail() for the TX path.Link: https://lore.kernel.org/all/559D628C.5020100@hartkopp.netLink: https://github.com/candle-usb/candleLight_fw/issues/166Link: https://lore.kernel.org/all/20230718-gs_usb-rx-offload-v2-3-716e542d14d5@pengutronix.deSigned-off-by: Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;

            List of files:
            /linux-6.15/drivers/net/can/usb/Kconfig</description>
        <pubDate>Fri, 02 Jun 2023 07:29:07 +0000</pubDate>
        <dc:creator>Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>88da1743 - can: usb: f81604: add Fintek F81604 support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/can/usb/Kconfig#88da1743</link>
        <description>can: usb: f81604: add Fintek F81604 supportThis patch adds support for Fintek USB to 2CAN controller.Changelog:v7: https://lore.kernel.org/all/20230509073821.25289-1-peter_hong@fintek.com.tw  1. Fix consistency of coding style for &quot;break&quot; in f81604_register_urbs().  2. Remove goto statement in f81604_open().v6: https://lore.kernel.org/all/20230505022317.22417-1-peter_hong@fintek.com.tw  1. Remove non-used define and change constant mask to GENMASK().  2. Move some variables declaration from function start to block start.  3. Move some variables initization into declaration.  4. Change variable &quot;id&quot; in f81604_start_xmit() only for CAN ID usage.v5: https://lore.kernel.org/all/20230420024403.13830-1-peter_hong@fintek.com.tw  1. Change all u8 *buff to struct f81604_int_data/f81604_can_frame.  2. Change all netdev-&gt;dev_id to netdev-&gt;dev_port.  3. Remove over design for f81604_process_rx_packet(). This device only     report a frame at once, so the f81604_process_rx_packet() are reduced     to process 1 frame.v4: https://lore.kernel.org/all/20230413084253.1524-1-peter_hong@fintek.com.tw  1. Remove f81604_prepare_urbs/f81604_remove_urbs() and alloc URB/buffer     dynamically in f81604_register_urbs(), using &quot;urbs_anchor&quot; for manage     all rx/int URBs.  2. Add F81604 to MAINTAINERS list.  3. Change handle_clear_reg_work/handle_clear_overrun_work to single     clear_reg_work and using bitwise &quot;clear_flags&quot; to record it.  4. Move __f81604_set_termination in front of f81604_probe() to avoid     rarely racing condition.  5. Add __aligned to struct f81604_int_data / f81604_sff / f81604_eff.  6. Add aligned operations in f81604_start_xmit/f81604_process_rx_packet().  7. Change lots of CANBUS functions first parameter from struct usb_device*     to struct f81604_port_priv *priv. But remain f81604_write / f81604_read     / f81604_update_bits() as struct usb_device* for     __f81604_set_termination() in probe() stage.  8. Simplify f81604_read_int_callback() and separate into     f81604_handle_tx / f81604_handle_can_bus_errors() functions.v3: https://lore.kernel.org/all/20230327051048.11589-1-peter_hong@fintek.com.tw  1. Change CAN clock to using MEGA units.  2. Remove USB set/get retry, only remain SJA1000 reset/operation retry.  3. Fix all numberic constant to define.  4. Add terminator control. (only 0 &amp; 120 ohm)  5. Using struct data to represent INT/TX/RX endpoints data instead byte     arrays.  6. Error message reports changed from %d to %pe for mnemotechnic values.  7. Some bit operations are changed to FIELD_PREP().  8. Separate TX functions from f81604_read_int_callback().  9. cf-&gt;can_id |= CAN_ERR_CNT in f81604_read_int_callback to report valid     TX/RX error counts.  10. Move f81604_prepare_urbs/f81604_remove_urbs() from CAN open/close() to      USB probe/disconnect().  11. coding style refactoring.v2: https://lore.kernel.org/all/20230321081152.26510-1-peter_hong@fintek.com.tw  1. coding style refactoring.  2. some const number are defined to describe itself.  3. fix wrong usage for can_get_echo_skb() in f81604_write_bulk_callback().v1: https://lore.kernel.org/all/20230317093352.3979-1-peter_hong@fintek.com.twSigned-off-by: Ji-Ze Hong (Peter Hong) &lt;peter_hong@fintek.com.tw&gt;Reviewed-by: Vincent Mailhol &lt;mailhol.vincent@wanadoo.fr&gt;Link: https://lore.kernel.org/all/20230509073821.25289-1-peter_hong@fintek.com.tw[mkl: add changelog, fix printf format]Signed-off-by: Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;

            List of files:
            /linux-6.15/drivers/net/can/usb/Kconfig</description>
        <pubDate>Tue, 09 May 2023 07:38:21 +0000</pubDate>
        <dc:creator>Ji-Ze Hong &lt;peter_hong@fintek.com.tw&gt;</dc:creator>
    </item>
<item>
        <title>2c4a1efc - can: etas_es58x: add devlink support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/can/usb/Kconfig#2c4a1efc</link>
        <description>can: etas_es58x: add devlink supportAdd basic support for devlink at the device level. The callbacks ofstruct devlink_ops will be implemented next.Signed-off-by: Vincent Mailhol &lt;mailhol.vincent@wanadoo.fr&gt;Link: https://lore.kernel.org/all/20221130174658.29282-2-mailhol.vincent@wanadoo.frSigned-off-by: Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;

            List of files:
            /linux-6.15/drivers/net/can/usb/Kconfig</description>
        <pubDate>Wed, 30 Nov 2022 17:46:52 +0000</pubDate>
        <dc:creator>Vincent Mailhol &lt;mailhol.vincent@wanadoo.fr&gt;</dc:creator>
    </item>
<item>
        <title>b1419cbe - can: gs_usb: mention candleLight as supported device</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/can/usb/Kconfig#b1419cbe</link>
        <description>can: gs_usb: mention candleLight as supported deviceTo make it easier for new users to find the correct driver forcandleLight compatible CAN-USB devices mention candleLight in thedriver&apos;s Kconfig input prompt.Link: https://lore.kernel.org/all/20221019205037.1600936-1-mkl@pengutronix.deSigned-off-by: Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;

            List of files:
            /linux-6.15/drivers/net/can/usb/Kconfig</description>
        <pubDate>Sun, 18 Sep 2022 19:06:53 +0000</pubDate>
        <dc:creator>Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>5e910bde - can/esd_usb2: Rename esd_usb2.c to esd_usb.c</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/can/usb/Kconfig#5e910bde</link>
        <description>can/esd_usb2: Rename esd_usb2.c to esd_usb.cAs suggested by Vincent, renaming of esd_usb2.c to esd_usb.cand according to that, adaption of Kconfig and Makfile, too.Link: https://lore.kernel.org/all/20220624190517.2299701-2-frank.jungclaus@esd.euSigned-off-by: Frank Jungclaus &lt;frank.jungclaus@esd.eu&gt;Signed-off-by: Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;

            List of files:
            /linux-6.15/drivers/net/can/usb/Kconfig</description>
        <pubDate>Fri, 24 Jun 2022 19:05:15 +0000</pubDate>
        <dc:creator>Frank Jungclaus &lt;frank.jungclaus@esd.eu&gt;</dc:creator>
    </item>
<item>
        <title>ee6bb641 - can: kvaser_usb: Add new Kvaser hydra devices</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/can/usb/Kconfig#ee6bb641</link>
        <description>can: kvaser_usb: Add new Kvaser hydra devicesAdd new Kvaser hydra devices.Link: https://lore.kernel.org/r/20210429093730.499263-2-extja@kvaser.comSigned-off-by: Jimmy Assarsson &lt;extja@kvaser.com&gt;Signed-off-by: Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;

            List of files:
            /linux-6.15/drivers/net/can/usb/Kconfig</description>
        <pubDate>Thu, 29 Apr 2021 09:37:30 +0000</pubDate>
        <dc:creator>Jimmy Assarsson &lt;extja@kvaser.com&gt;</dc:creator>
    </item>
<item>
        <title>85372578 - can: etas_es58x: add core support for ETAS ES58X CAN USB interfaces</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/can/usb/Kconfig#85372578</link>
        <description>can: etas_es58x: add core support for ETAS ES58X CAN USB interfacesThis patch adds the core support for various USB CAN interfaces fromETAS GmbH (https://www.etas.com/en/products/es58x.php). The nextpatches add the glue code drivers for the individual interfaces.Link: https://lore.kernel.org/r/20210410095948.233305-2-mailhol.vincent@wanadoo.frCo-developed-by: Arunachalam Santhanam &lt;arunachalam.santhanam@in.bosch.com&gt;Signed-off-by: Arunachalam Santhanam &lt;arunachalam.santhanam@in.bosch.com&gt;Signed-off-by: Vincent Mailhol &lt;mailhol.vincent@wanadoo.fr&gt;Signed-off-by: Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;

            List of files:
            /linux-6.15/drivers/net/can/usb/Kconfig</description>
        <pubDate>Sat, 10 Apr 2021 09:59:46 +0000</pubDate>
        <dc:creator>Vincent Mailhol &lt;mailhol.vincent@wanadoo.fr&gt;</dc:creator>
    </item>
<item>
        <title>7507479c - can: kvaser_usb: Add support for USBcan Pro 4xHS</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/can/usb/Kconfig#7507479c</link>
        <description>can: kvaser_usb: Add support for USBcan Pro 4xHSAdd support for Kvaser USBcan Pro 4xHS.Link: https://lore.kernel.org/r/20210309091724.31262-2-jimmyassarsson@gmail.comSigned-off-by: Jimmy Assarsson &lt;extja@kvaser.com&gt;Signed-off-by: Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;

            List of files:
            /linux-6.15/drivers/net/can/usb/Kconfig</description>
        <pubDate>Tue, 09 Mar 2021 09:17:24 +0000</pubDate>
        <dc:creator>Jimmy Assarsson &lt;extja@kvaser.com&gt;</dc:creator>
    </item>
<item>
        <title>887e5a9a - can: kvaser_usb: Add new Kvaser hydra devices</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/can/usb/Kconfig#887e5a9a</link>
        <description>can: kvaser_usb: Add new Kvaser hydra devicesAdd new Kvaser hydra devices.Signed-off-by: Jimmy Assarsson &lt;extja@kvaser.com&gt;Link: https://lore.kernel.org/r/20201115163027.16851-6-jimmyassarsson@gmail.comSigned-off-by: Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;

            List of files:
            /linux-6.15/drivers/net/can/usb/Kconfig</description>
        <pubDate>Sun, 15 Nov 2020 16:30:27 +0000</pubDate>
        <dc:creator>Jimmy Assarsson &lt;extja@kvaser.com&gt;</dc:creator>
    </item>
<item>
        <title>83966043 - can: kvaser_usb: Add new Kvaser Leaf v2 devices</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/can/usb/Kconfig#83966043</link>
        <description>can: kvaser_usb: Add new Kvaser Leaf v2 devicesAdd new Kvaser Leaf v2 devices.Signed-off-by: Jimmy Assarsson &lt;extja@kvaser.com&gt;Link: https://lore.kernel.org/r/20201115163027.16851-4-jimmyassarsson@gmail.comSigned-off-by: Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;

            List of files:
            /linux-6.15/drivers/net/can/usb/Kconfig</description>
        <pubDate>Sun, 15 Nov 2020 16:30:25 +0000</pubDate>
        <dc:creator>Jimmy Assarsson &lt;extja@kvaser.com&gt;</dc:creator>
    </item>
<item>
        <title>88bfb9a7 - can: drivers: fix spelling mistakes</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/can/usb/Kconfig#88bfb9a7</link>
        <description>can: drivers: fix spelling mistakesThis patch fixes spelling erros found by &quot;codespell&quot; in thedrivers/net/can subtree.Link: https://lore.kernel.org/r/20200915223527.1417033-6-mkl@pengutronix.deSigned-off-by: Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;

            List of files:
            /linux-6.15/drivers/net/can/usb/Kconfig</description>
        <pubDate>Tue, 15 Sep 2020 22:34:55 +0000</pubDate>
        <dc:creator>Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>a7f7f624 - treewide: replace &apos;---help---&apos; in Kconfig files with &apos;help&apos;</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/can/usb/Kconfig#a7f7f624</link>
        <description>treewide: replace &apos;---help---&apos; in Kconfig files with &apos;help&apos;Since commit 84af7a6194e4 (&quot;checkpatch: kconfig: prefer &apos;help&apos; over&apos;---help---&apos;&quot;), the number of &apos;---help---&apos; has been graduallydecreasing, but there are still more than 2400 instances.This commit finishes the conversion. While I touched the lines,I also fixed the indentation.There are a variety of indentation styles found.  a) 4 spaces + &apos;---help---&apos;  b) 7 spaces + &apos;---help---&apos;  c) 8 spaces + &apos;---help---&apos;  d) 1 space + 1 tab + &apos;---help---&apos;  e) 1 tab + &apos;---help---&apos;    (correct indentation)  f) 1 tab + 1 space + &apos;---help---&apos;  g) 1 tab + 2 spaces + &apos;---help---&apos;In order to convert all of them to 1 tab + &apos;help&apos;, I ran thefollowing commend:  $ find . -name &apos;Kconfig*&apos; | xargs sed -i &apos;s/^[[:space:]]*---help---/\thelp/&apos;Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/net/can/usb/Kconfig</description>
        <pubDate>Sat, 13 Jun 2020 16:50:22 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>02bc5eb9 - drivers: net: Fix Kconfig indentation</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/can/usb/Kconfig#02bc5eb9</link>
        <description>drivers: net: Fix Kconfig indentationAdjust indentation from spaces to tab (+optional two spaces) as incoding style with command like:    $ sed -e &apos;s/^        /\t/&apos; -i */KconfigSigned-off-by: Krzysztof Kozlowski &lt;krzk@kernel.org&gt;Acked-by: Kalle Valo &lt;kvalo@codeaurora.org&gt;Reviewed-by: Leon Romanovsky &lt;leonro@mellanox.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/can/usb/Kconfig</description>
        <pubDate>Mon, 23 Sep 2019 15:52:43 +0000</pubDate>
        <dc:creator>Krzysztof Kozlowski &lt;krzk@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>0ed89d77 - can: usb: Kconfig: Remove duplicate menu entry</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/can/usb/Kconfig#0ed89d77</link>
        <description>can: usb: Kconfig: Remove duplicate menu entryThis seems to have slipped in by accident when sorting the entries.Fixes: ffbdd9172ee2f53020f763574b4cdad8d9760a4fSigned-off-by: Alexander Dahl &lt;ada@thorsis.com&gt;Signed-off-by: Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;

            List of files:
            /linux-6.15/drivers/net/can/usb/Kconfig</description>
        <pubDate>Tue, 22 Jan 2019 13:55:42 +0000</pubDate>
        <dc:creator>Alexander Dahl &lt;ada@thorsis.com&gt;</dc:creator>
    </item>
<item>
        <title>ec8f24b7 - treewide: Add SPDX license identifier - Makefile/Kconfig</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/can/usb/Kconfig#ec8f24b7</link>
        <description>treewide: Add SPDX license identifier - Makefile/KconfigAdd SPDX license identifiers to all Make/Kconfig files which: - Have no license information of any formThese files fall under the project license, GPL v2 only. The resulting SPDXlicense identifier is:  GPL-2.0-onlySigned-off-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/net/can/usb/Kconfig</description>
        <pubDate>Sun, 19 May 2019 12:07:45 +0000</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@linutronix.de&gt;</dc:creator>
    </item>
</channel>
</rss>
