<?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>4e6d2739 - Platform: OLPC: Add a config menu category for XO 1.75</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/platform/olpc/Kconfig#4e6d2739</link>
        <description>Platform: OLPC: Add a config menu category for XO 1.75Randy Dunlap says:  drivers/platform/olpc/Kconfig needs to use &quot;menuconfig&quot; like all of the  other Kconfig files in drivers/platform/ so that its menu is listed in  the correct place in *config interfaces.Otherwise he&apos;s sad.Reported-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Signed-off-by: Lubomir Rintel &lt;lkundrak@v3.sk&gt;Acked-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Signed-off-by: Andy Shevchenko &lt;andriy.shevchenko@linux.intel.com&gt;

            List of files:
            /linux-6.15/drivers/platform/olpc/Kconfig</description>
        <pubDate>Wed, 29 May 2019 08:34:05 +0000</pubDate>
        <dc:creator>Lubomir Rintel &lt;lkundrak@v3.sk&gt;</dc:creator>
    </item>
<item>
        <title>af21f32c - Platform: OLPC: Require CONFIG_POWER_SUPPLY for XO-1.75 EC</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/platform/olpc/Kconfig#af21f32c</link>
        <description>Platform: OLPC: Require CONFIG_POWER_SUPPLY for XO-1.75 ECERROR: &quot;power_supply_put&quot; [drivers/platform/olpc/olpc-xo175-ec.ko] undefined!  ERROR: &quot;power_supply_changed&quot; [drivers/platform/olpc/olpc-xo175-ec.ko] undefined!  ERROR: &quot;power_supply_get_by_name&quot; [drivers/platform/olpc/olpc-xo175-ec.ko] undefined!Adding the dependency seems like a more reasonable thing compared toifdef-ing the bits, as if one has an XO-1.75 they almost certainly wanta baterry and AC adapter support.Reported-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Signed-off-by: Lubomir Rintel &lt;lkundrak@v3.sk&gt;Acked-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Signed-off-by: Andy Shevchenko &lt;andriy.shevchenko@linux.intel.com&gt;

            List of files:
            /linux-6.15/drivers/platform/olpc/Kconfig</description>
        <pubDate>Wed, 29 May 2019 08:34:04 +0000</pubDate>
        <dc:creator>Lubomir Rintel &lt;lkundrak@v3.sk&gt;</dc:creator>
    </item>
<item>
        <title>cdaf018c - Platform: OLPC: Add INPUT dependencies</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/platform/olpc/Kconfig#cdaf018c</link>
        <description>Platform: OLPC: Add INPUT dependenciesBuilding with CONFIG_INPUT set to m:drivers/platform/olpc/olpc-xo175-ec.o: In function `olpc_xo175_ec_complete&apos;:olpc-xo175-ec.c:(.text+0x75d): undefined reference to `input_event&apos;olpc-xo175-ec.c:(.text+0x76f): undefined reference to `input_event&apos;olpc-xo175-ec.c:(.text+0x787): undefined reference to `input_event&apos;olpc-xo175-ec.c:(.text+0x799): undefined reference to `input_event&apos;drivers/platform/olpc/olpc-xo175-ec.o: In function `olpc_xo175_ec_probe&apos;:olpc-xo175-ec.c:(.text+0x8d5): undefined reference to `devm_input_allocate_device&apos;olpc-xo175-ec.c:(.text+0x910): undefined reference to `input_set_capability&apos;olpc-xo175-ec.c:(.text+0x91c): undefined reference to `input_register_device&apos;This patch add INPUT dependencies to fix this.Reported-by: Hulk Robot &lt;hulkci@huawei.com&gt;Fixes: 0c3d931b3ab9 (&quot;Platform: OLPC: Add XO-1.75 EC driver&quot;)Signed-off-by: YueHaibing &lt;yuehaibing@huawei.com&gt;Signed-off-by: Andy Shevchenko &lt;andriy.shevchenko@linux.intel.com&gt;

            List of files:
            /linux-6.15/drivers/platform/olpc/Kconfig</description>
        <pubDate>Tue, 28 May 2019 09:28:06 +0000</pubDate>
        <dc:creator>YueHaibing &lt;yuehaibing@huawei.com&gt;</dc:creator>
    </item>
<item>
        <title>ad04ca76 - Platform: OLPC: Fix build error without CONFIG_SPI</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/platform/olpc/Kconfig#ad04ca76</link>
        <description>Platform: OLPC: Fix build error without CONFIG_SPIFix gcc build error while CONFIG_SPI is not setdrivers/platform/olpc/olpc-xo175-ec.o: In function `olpc_xo175_ec_remove&apos;:olpc-xo175-ec.c:(.text+0x190): undefined reference to `spi_slave_abort&apos;drivers/platform/olpc/olpc-xo175-ec.o: In function `olpc_xo175_ec_send_command&apos;:olpc-xo175-ec.c:(.text+0x374): undefined reference to `spi_async&apos;drivers/platform/olpc/olpc-xo175-ec.o: In function `olpc_xo175_ec_cmd&apos;:olpc-xo175-ec.c:(.text+0x8a0): undefined reference to `spi_slave_abort&apos;drivers/platform/olpc/olpc-xo175-ec.o: In function `olpc_xo175_ec_spi_driver_init&apos;:olpc-xo175-ec.c:(.init.text+0x14): undefined reference to `__spi_register_driver&apos;We should depends on CONFIG_SPI_SLAVE other than directly select it.Reported-by: Hulk Robot &lt;hulkci@huawei.com&gt;Fixes: 0c3d931b3ab9 (&quot;Platform: OLPC: Add XO-1.75 EC driver&quot;)Signed-off-by: YueHaibing &lt;yuehaibing@huawei.com&gt;Signed-off-by: Andy Shevchenko &lt;andriy.shevchenko@linux.intel.com&gt;

            List of files:
            /linux-6.15/drivers/platform/olpc/Kconfig</description>
        <pubDate>Tue, 28 May 2019 09:28:05 +0000</pubDate>
        <dc:creator>YueHaibing &lt;yuehaibing@huawei.com&gt;</dc:creator>
    </item>
<item>
        <title>231c0c21 - Platform: OLPC: Add a regulator for the DCON</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/platform/olpc/Kconfig#231c0c21</link>
        <description>Platform: OLPC: Add a regulator for the DCONAll OLPC ECs are able to turn the power to the DCON on an off. Use theregulator framework to expose the functionality.Signed-off-by: Lubomir Rintel &lt;lkundrak@v3.sk&gt;Signed-off-by: Andy Shevchenko &lt;andriy.shevchenko@linux.intel.com&gt;

            List of files:
            /linux-6.15/drivers/platform/olpc/Kconfig</description>
        <pubDate>Mon, 13 May 2019 07:56:38 +0000</pubDate>
        <dc:creator>Lubomir Rintel &lt;lkundrak@v3.sk&gt;</dc:creator>
    </item>
<item>
        <title>0c3d931b - Platform: OLPC: Add XO-1.75 EC driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/platform/olpc/Kconfig#0c3d931b</link>
        <description>Platform: OLPC: Add XO-1.75 EC driverIt&apos;s based off the driver from the OLPC kernel sources. Somewhatmodernized and cleaned up, for better or worse.Modified to plug into the olpc-ec driver infrastructure (so that batteryinterface and debugfs could be reused) and the SPI slave framework.Signed-off-by: Lubomir Rintel &lt;lkundrak@v3.sk&gt;Reviewed-by: Andy Shevchenko &lt;andy.shevchenko@gmail.com&gt;Signed-off-by: Andy Shevchenko &lt;andriy.shevchenko@linux.intel.com&gt;

            List of files:
            /linux-6.15/drivers/platform/olpc/Kconfig</description>
        <pubDate>Mon, 13 May 2019 07:56:37 +0000</pubDate>
        <dc:creator>Lubomir Rintel &lt;lkundrak@v3.sk&gt;</dc:creator>
    </item>
</channel>
</rss>
