<?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>c3a4e552 - Revert &quot;serdev: simplify Makefile&quot;</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/tty/serdev/Makefile#c3a4e552</link>
        <description>Revert &quot;serdev: simplify Makefile&quot;This reverts commit 54edb425346a4d5e17f7e54e8c97c0d0eac26315.The offending commit caused serdev core to always be built-in, somethingwhich breaks the build of dependent modules when serdev is being builtas a module:ERROR: &quot;__serdev_device_driver_register&quot; [drivers/gnss/gnss-ubx.ko] undefined!...make[2]: *** [/home/johan/work/omicron/src/linux/scripts/Makefile.modpost:94: __modpost] Error 1Reported-by: kbuild test robot &lt;lkp@intel.com&gt;Signed-off-by: Johan Hovold &lt;johan@kernel.org&gt;Cc: Uwe Kleine-K&#246;nig &lt;u.kleine-koenig@pengutronix.de&gt;Link: https://lore.kernel.org/r/20191218131154.13702-1-johan@kernel.orgSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/tty/serdev/Makefile</description>
        <pubDate>Wed, 18 Dec 2019 13:11:54 +0000</pubDate>
        <dc:creator>Johan Hovold &lt;johan@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>54edb425 - serdev: simplify Makefile</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/tty/serdev/Makefile#54edb425</link>
        <description>serdev: simplify Makefiledrivers/tty/Makefile has:	obj-$(CONFIG_SERIAL_DEV_BUS)    += serdev/so in drivers/tty/serdev/Makefile CONFIG_SERIAL_DEV_BUS is always =y.Signed-off-by: Uwe Kleine-K&#246;nig &lt;u.kleine-koenig@pengutronix.de&gt;Link: https://lore.kernel.org/r/20191212101649.18126-1-u.kleine-koenig@pengutronix.deSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/tty/serdev/Makefile</description>
        <pubDate>Thu, 12 Dec 2019 10:16:48 +0000</pubDate>
        <dc:creator>Uwe Kleine-K&#246;nig &lt;u.kleine-koenig@pengutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>38c91d1d - tty: add SPDX identifiers to Kconfig and Makefiles</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/tty/serdev/Makefile#38c91d1d</link>
        <description>tty: add SPDX identifiers to Kconfig and MakefilesThere were a few Kconfig and Makefiles under drivers/tty/ that weremissing a SPDX identifier.  Fix that up so that automated tools canproperly classify all kernel source files.Cc: Jiri Slaby &lt;jslaby@suse.com&gt;Cc: Jiri Kosina &lt;jikos@kernel.org&gt;Cc: Rob Herring &lt;robh@kernel.org&gt;Acked-by: David Sterba &lt;dsterba@suse.com&gt;Reviewed-by: Mukesh Ojha &lt;mojha@codeaurora.org&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/tty/serdev/Makefile</description>
        <pubDate>Tue, 02 Apr 2019 14:07:07 +0000</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>bed35c6d - serdev: add a tty port controller driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/tty/serdev/Makefile#bed35c6d</link>
        <description>serdev: add a tty port controller driverAdd a serdev controller driver for tty ports.The controller is registered with serdev when tty ports are registeredwith the TTY core. As the TTY core is built-in only, this has the sideeffect of making serdev built-in as well.Signed-off-by: Rob Herring &lt;robh@kernel.org&gt;Reviewed-By: Sebastian Reichel &lt;sre@kernel.org&gt;Tested-By: Sebastian Reichel &lt;sre@kernel.org&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/tty/serdev/Makefile</description>
        <pubDate>Thu, 02 Feb 2017 19:48:08 +0000</pubDate>
        <dc:creator>Rob Herring &lt;robh@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>cd6484e1 - serdev: Introduce new bus for serial attached devices</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/tty/serdev/Makefile#cd6484e1</link>
        <description>serdev: Introduce new bus for serial attached devicesThe serdev bus is designed for devices such as Bluetooth, WiFi, GPSand NFC connected to UARTs on host processors. Tradionally these havebeen handled with tty line disciplines, rfkill, and userspace glue suchas hciattach. This approach has many drawbacks since it doesn&apos;t fitinto the Linux driver model. Handling of sideband signals, power controland firmware loading are the main issues.This creates a serdev bus with controllers (i.e. host serial ports) andattached devices. Typically, these are point to point connections, butsome devices have muxing protocols or a h/w mux is conceivable. Anymuxing is not yet supported with the serdev bus.Signed-off-by: Rob Herring &lt;robh@kernel.org&gt;Reviewed-By: Sebastian Reichel &lt;sre@kernel.org&gt;Tested-By: Sebastian Reichel &lt;sre@kernel.org&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/tty/serdev/Makefile</description>
        <pubDate>Thu, 02 Feb 2017 19:48:07 +0000</pubDate>
        <dc:creator>Rob Herring &lt;robh@kernel.org&gt;</dc:creator>
    </item>
</channel>
</rss>
