<?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 Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>bfe0092d - can: Kconfig: add CONFIG_CAN_RX_OFFLOAD</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/can/dev/Makefile#bfe0092d</link>
        <description>can: Kconfig: add CONFIG_CAN_RX_OFFLOADOnly a few drivers rely on the CAN rx offload framework (as of thewriting of this patch, only four: flexcan, m_can, mcp251xfd andti_hecc). Split it out of can-dev and add a new config symbol:CAN_RX_OFFLOAD.The drivers relying on CAN rx offload are in different subfolders. Make CAN_RX_OFFLOAD an hidden option and tag all the driversdepending on that feature with &quot;select CAN_RX_OFFLOAD&quot; so that theoption gets automatically enabled if and only if one of those driversis chosen.Link: https://lore.kernel.org/all/20220610143009.323579-5-mailhol.vincent@wanadoo.frSuggested-by: Geert Uytterhoeven &lt;geert@linux-m68k.org&gt;Suggested-by: Jakub Kicinski &lt;kuba@kernel.org&gt;Signed-off-by: Vincent Mailhol &lt;mailhol.vincent@wanadoo.fr&gt;Acked-by: Max Staudt &lt;max@enpas.org&gt;Tested-by: Oliver Hartkopp &lt;socketcan@hartkopp.net&gt;Signed-off-by: Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;

            List of files:
            /linux-6.15/drivers/net/can/dev/Makefile</description>
        <pubDate>Fri, 10 Jun 2022 14:30:06 +0000</pubDate>
        <dc:creator>Vincent Mailhol &lt;mailhol.vincent@wanadoo.fr&gt;</dc:creator>
    </item>
<item>
        <title>0c7e1151 - can: bittiming: move bittiming calculation functions to calc_bittiming.c</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/can/dev/Makefile#0c7e1151</link>
        <description>can: bittiming: move bittiming calculation functions to calc_bittiming.cThe canonical way to select or deselect an object during compilationis to use this pattern in the relevant Makefile:bar-$(CONFIG_FOO) := foo.obittiming.c instead uses some #ifdef CONFIG_CAN_CALC_BITTIMG.Create a new file named calc_bittiming.c with all the functions whichare conditionally compiled with CONFIG_CAN_CALC_BITTIMG and modify theMakefile according to above pattern.Link: https://lore.kernel.org/all/20220610143009.323579-4-mailhol.vincent@wanadoo.frSigned-off-by: Vincent Mailhol &lt;mailhol.vincent@wanadoo.fr&gt;Acked-by: Max Staudt &lt;max@enpas.org&gt;Tested-by: Oliver Hartkopp &lt;socketcan@hartkopp.net&gt;Signed-off-by: Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;

            List of files:
            /linux-6.15/drivers/net/can/dev/Makefile</description>
        <pubDate>Fri, 10 Jun 2022 14:30:05 +0000</pubDate>
        <dc:creator>Vincent Mailhol &lt;mailhol.vincent@wanadoo.fr&gt;</dc:creator>
    </item>
<item>
        <title>6a528644 - can: Kconfig: turn menu &quot;CAN Device Drivers&quot; into a menuconfig using CAN_DEV</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/can/dev/Makefile#6a528644</link>
        <description>can: Kconfig: turn menu &quot;CAN Device Drivers&quot; into a menuconfig using CAN_DEVIn the next patches, the software/virtual drivers (slcan, v(x)can)will depend on drivers/net/can/dev/skb.o.This patch changes the scope of the can-dev module to include theabove mentioned drivers.To do so, we reuse the menu &quot;CAN Device Drivers&quot; and turn it into aconfigmenu using the config symbol CAN_DEV (which we released inprevious patch). Also, add a description to this new CAN_DEVmenuconfig.The symbol CAN_DEV now only triggers the build of skb.o. For thisreasons, all the macros from linux/module.h are deported fromdrivers/net/can/dev/dev.c to drivers/net/can/dev/skb.c.Finally, drivers/net/can/dev/Makefile is adjusted accordingly.Link: https://lore.kernel.org/all/20220610143009.323579-3-mailhol.vincent@wanadoo.frSuggested-by: Oliver Hartkopp &lt;socketcan@hartkopp.net&gt;Signed-off-by: Vincent Mailhol &lt;mailhol.vincent@wanadoo.fr&gt;Acked-by: Max Staudt &lt;max@enpas.org&gt;Tested-by: Oliver Hartkopp &lt;socketcan@hartkopp.net&gt;Signed-off-by: Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;

            List of files:
            /linux-6.15/drivers/net/can/dev/Makefile</description>
        <pubDate>Fri, 10 Jun 2022 14:30:04 +0000</pubDate>
        <dc:creator>Vincent Mailhol &lt;mailhol.vincent@wanadoo.fr&gt;</dc:creator>
    </item>
<item>
        <title>df6ad5dd - can: Kconfig: rename config symbol CAN_DEV into CAN_NETLINK</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/can/dev/Makefile#df6ad5dd</link>
        <description>can: Kconfig: rename config symbol CAN_DEV into CAN_NETLINKIn the next patches, the scope of the can-dev module will grow toengloble the software/virtual drivers (slcan, v(x)can). To thisextent, release CAN_DEV by renaming it into CAN_NETLINK. The configsymbol CAN_DEV will be reused to cover this extended scope.The rationale for the name CAN_NETLINK is that netlink is thepredominant feature added here.The current description only mentions platform drivers despite thefact that this symbol is also required by &quot;normal&quot; devices (e.g. USBor PCI) which do not fall under the platform devices category. Thedescription is updated accordingly to fix this gap.Link: https://lore.kernel.org/all/20220610143009.323579-2-mailhol.vincent@wanadoo.frSigned-off-by: Vincent Mailhol &lt;mailhol.vincent@wanadoo.fr&gt;Acked-by: Max Staudt &lt;max@enpas.org&gt;Tested-by: Oliver Hartkopp &lt;socketcan@hartkopp.net&gt;Signed-off-by: Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;

            List of files:
            /linux-6.15/drivers/net/can/dev/Makefile</description>
        <pubDate>Fri, 10 Jun 2022 14:30:03 +0000</pubDate>
        <dc:creator>Vincent Mailhol &lt;mailhol.vincent@wanadoo.fr&gt;</dc:creator>
    </item>
<item>
        <title>6c1e423a - can: can-dev: remove obsolete CAN LED support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/can/dev/Makefile#6c1e423a</link>
        <description>can: can-dev: remove obsolete CAN LED supportSince commit 30f3b42147ba6f (&quot;can: mark led trigger as broken&quot;) theCAN specific LED support was disabled and marked as BROKEN. As thecommon LED support with CONFIG_LEDS_TRIGGER_NETDEV should do this worknow the code can be removed as preparation for a CAN netdevice Kconfigrework.Link: https://lore.kernel.org/all/20220518154527.29046-1-socketcan@hartkopp.netSuggested-by: Vincent Mailhol &lt;mailhol.vincent@wanadoo.fr&gt;Signed-off-by: Oliver Hartkopp &lt;socketcan@hartkopp.net&gt;[mkl: remove led.h from MAINTAINERS]Signed-off-by: Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;

            List of files:
            /linux-6.15/drivers/net/can/dev/Makefile</description>
        <pubDate>Wed, 18 May 2022 15:45:27 +0000</pubDate>
        <dc:creator>Oliver Hartkopp &lt;socketcan@hartkopp.net&gt;</dc:creator>
    </item>
<item>
        <title>0a042c6e - can: dev: move netlink related code into seperate file</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/can/dev/Makefile#0a042c6e</link>
        <description>can: dev: move netlink related code into seperate fileThis patch moves the netlink related code of the CAN device infrastructure intoa separate file.Reviewed-by: Vincent Mailhol &lt;mailhol.vincent@wanadoo.fr&gt;Link: https://lore.kernel.org/r/20210111141930.693847-7-mkl@pengutronix.deSigned-off-by: Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;

            List of files:
            /linux-6.15/drivers/net/can/dev/Makefile</description>
        <pubDate>Mon, 11 Jan 2021 14:19:21 +0000</pubDate>
        <dc:creator>Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>18f2dbfd - can: dev: move skb related into seperate file</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/can/dev/Makefile#18f2dbfd</link>
        <description>can: dev: move skb related into seperate fileThis patch moves the skb related code of the CAN device infrastructure into aseparate file.Reviewed-by: Vincent Mailhol &lt;mailhol.vincent@wanadoo.fr&gt;Link: https://lore.kernel.org/r/20210111141930.693847-6-mkl@pengutronix.deSigned-off-by: Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;

            List of files:
            /linux-6.15/drivers/net/can/dev/Makefile</description>
        <pubDate>Mon, 11 Jan 2021 14:19:20 +0000</pubDate>
        <dc:creator>Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>bdd2e413 - can: dev: move length related code into seperate file</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/can/dev/Makefile#bdd2e413</link>
        <description>can: dev: move length related code into seperate fileThis patch moves all CAN frame length related code of the CAN deviceinfrastructure into a separate file.Reviewed-by: Vincent Mailhol &lt;mailhol.vincent@wanadoo.fr&gt;Link: https://lore.kernel.org/r/20210111141930.693847-5-mkl@pengutronix.deSigned-off-by: Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;

            List of files:
            /linux-6.15/drivers/net/can/dev/Makefile</description>
        <pubDate>Mon, 11 Jan 2021 14:19:19 +0000</pubDate>
        <dc:creator>Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>5a9d5ecd - can: dev: move bittiming related code into seperate file</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/can/dev/Makefile#5a9d5ecd</link>
        <description>can: dev: move bittiming related code into seperate fileThis patch moves the bittiming related code of the CAN device infrastructureinto a separate file.Reviewed-by: Vincent Mailhol &lt;mailhol.vincent@wanadoo.fr&gt;Link: https://lore.kernel.org/r/20210111141930.693847-4-mkl@pengutronix.deSigned-off-by: Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;

            List of files:
            /linux-6.15/drivers/net/can/dev/Makefile</description>
        <pubDate>Mon, 11 Jan 2021 14:19:18 +0000</pubDate>
        <dc:creator>Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>3e77f70e - can: dev: move driver related infrastructure into separate subdir</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/can/dev/Makefile#3e77f70e</link>
        <description>can: dev: move driver related infrastructure into separate subdirThis patch moves the CAN driver related infrastructure into a separate subdir.It will be split into more files in the coming patches.Reviewed-by: Vincent Mailhol &lt;mailhol.vincent@wanadoo.fr&gt;Link: https://lore.kernel.org/r/20210111141930.693847-3-mkl@pengutronix.deSigned-off-by: Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;

            List of files:
            /linux-6.15/drivers/net/can/dev/Makefile</description>
        <pubDate>Mon, 11 Jan 2021 14:19:17 +0000</pubDate>
        <dc:creator>Marc Kleine-Budde &lt;mkl@pengutronix.de&gt;</dc:creator>
    </item>
</channel>
</rss>
