<?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>d8da4f19 - eeprom: Fix the cacography in Kconfig</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/eeprom/Kconfig#d8da4f19</link>
        <description>eeprom: Fix the cacography in KconfigThe word &apos;swtich&apos; is wrong, so fix it.Signed-off-by: Luo Yifan &lt;luoyifan@cmss.chinamobile.com&gt;Link: https://lore.kernel.org/r/20241022062534.122428-1-luoyifan@cmss.chinamobile.comSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/misc/eeprom/Kconfig</description>
        <pubDate>Tue, 22 Oct 2024 06:25:34 +0000</pubDate>
        <dc:creator>Luo Yifan &lt;luoyifan@cmss.chinamobile.com&gt;</dc:creator>
    </item>
<item>
        <title>79d0df36 - eeprom: ee1004: Add nvmem support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/eeprom/Kconfig#79d0df36</link>
        <description>eeprom: ee1004: Add nvmem supportCurrently the driver does not register a nvmem provider, which meansthat userspace programs cannot access the ee1004 EEPROM through thestandard nvmem sysfs API.Fix this by replacing the custom sysfs attribute with a standard nvmeminterface, which also takes care of backwards compatibility.Tested on a Dell Inspiron 3505.Signed-off-by: Armin Wolf &lt;W_Armin@gmx.de&gt;Link: https://lore.kernel.org/r/20240625063459.429953-2-W_Armin@gmx.deSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/misc/eeprom/Kconfig</description>
        <pubDate>Tue, 25 Jun 2024 06:34:59 +0000</pubDate>
        <dc:creator>Armin Wolf &lt;W_Armin@gmx.de&gt;</dc:creator>
    </item>
<item>
        <title>0113a99b - eeprom: Remove deprecated legacy eeprom driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/eeprom/Kconfig#0113a99b</link>
        <description>eeprom: Remove deprecated legacy eeprom driverDriver was marked deprecated 4 years ago, so it&apos;s time to remove it.This driver is the only i2c client driver using class I2C_CLASS_SPD.Apparently, as a follow-up step, we can remove I2C_CLASS_SPDaltogether.Signed-off-by: Heiner Kallweit &lt;hkallweit1@gmail.com&gt;Reviewed-by: Jean Delvare &lt;jdelvare@suse.de&gt;Link: https://lore.kernel.org/r/18241458-52db-4537-bead-d570801253c3@gmail.comSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/misc/eeprom/Kconfig</description>
        <pubDate>Sun, 24 Sep 2023 21:49:09 +0000</pubDate>
        <dc:creator>Heiner Kallweit &lt;hkallweit1@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>7f3c782b - eeprom: at24: also select REGMAP</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/eeprom/Kconfig#7f3c782b</link>
        <description>eeprom: at24: also select REGMAPSelecting only REGMAP_I2C can leave REGMAP unset, causing build errors,so also select REGMAP to prevent the build errors.../drivers/misc/eeprom/at24.c:540:42: warning: &apos;struct regmap_config&apos; declared inside parameter list will not be visible outside of this definition or declaration  540 |                                   struct regmap_config *regmap_config)../drivers/misc/eeprom/at24.c: In function &apos;at24_make_dummy_client&apos;:../drivers/misc/eeprom/at24.c:552:18: error: implicit declaration of function &apos;devm_regmap_init_i2c&apos; [-Werror=implicit-function-declaration]  552 |         regmap = devm_regmap_init_i2c(dummy_client, regmap_config);../drivers/misc/eeprom/at24.c:552:16: warning: assignment to &apos;struct regmap *&apos; from &apos;int&apos; makes pointer from integer without a cast [-Wint-conversion]  552 |         regmap = devm_regmap_init_i2c(dummy_client, regmap_config);../drivers/misc/eeprom/at24.c: In function &apos;at24_probe&apos;:../drivers/misc/eeprom/at24.c:586:16: error: variable &apos;regmap_config&apos; has initializer but incomplete type  586 |         struct regmap_config regmap_config = { };../drivers/misc/eeprom/at24.c:586:30: error: storage size of &apos;regmap_config&apos; isn&apos;t known  586 |         struct regmap_config regmap_config = { };../drivers/misc/eeprom/at24.c:586:30: warning: unused variable &apos;regmap_config&apos; [-Wunused-variable]Fixes: 5c015258478e (&quot;eeprom: at24: add basic regmap_i2c support&quot;)Signed-off-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Signed-off-by: Bartosz Golaszewski &lt;bartosz.golaszewski@linaro.org&gt;

            List of files:
            /linux-6.15/drivers/misc/eeprom/Kconfig</description>
        <pubDate>Thu, 08 Jun 2023 02:54:24 +0000</pubDate>
        <dc:creator>Randy Dunlap &lt;rdunlap@infradead.org&gt;</dc:creator>
    </item>
<item>
        <title>fd307a4a - nvmem: prepare basics for FRAM support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/eeprom/Kconfig#fd307a4a</link>
        <description>nvmem: prepare basics for FRAM supportAdded enum and string for FRAM (ferroelectric RAM) to expose it as filenamed &quot;fram&quot;.Added documentation of sysfs file.Signed-off-by: Jiri Prchal &lt;jiri.prchal@aksignal.cz&gt;Link: https://lore.kernel.org/r/20210611094601.95131-2-jiri.prchal@aksignal.czSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/misc/eeprom/Kconfig</description>
        <pubDate>Fri, 11 Jun 2021 09:45:58 +0000</pubDate>
        <dc:creator>Jiri Prchal &lt;jiri.prchal@aksignal.cz&gt;</dc:creator>
    </item>
<item>
        <title>c165d894 - eeprom: Deprecate the legacy eeprom driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/eeprom/Kconfig#c165d894</link>
        <description>eeprom: Deprecate the legacy eeprom driverTime has come to get rid of the old eeprom driver. The at24 drivershould be used instead. So mark the eeprom driver as deprecated andgive users some time to migrate. Then we can remove the legacyeeprom driver completely.Signed-off-by: Jean Delvare &lt;jdelvare@suse.de&gt;Cc: Arnd Bergmann &lt;arnd@arndb.de&gt;Link: https://lore.kernel.org/r/20190902104838.058725c2@endymionSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/misc/eeprom/Kconfig</description>
        <pubDate>Mon, 02 Sep 2019 08:48:38 +0000</pubDate>
        <dc:creator>Jean Delvare &lt;jdelvare@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>1b562183 - eeprom: make older eeprom drivers select NVMEM_SYSFS</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/eeprom/Kconfig#1b562183</link>
        <description>eeprom: make older eeprom drivers select NVMEM_SYSFSmisc/eeprom/{at24,at25,eeprom_93xx46} drivers all register theircorresponding devices in the nvmem framework in compat mode which requiresnvmem sysfs interface to be present. The latter, however, has been splitout from nvmem under a separate Kconfig in commit ae0c2d725512 (&quot;nvmem:core: add NVMEM_SYSFS Kconfig&quot;). As a result, probing certain I2C-attachedEEPROMs now fails with  at24: probe of 0-0050 failed with error -38because of a stub implementation of nvmem_sysfs_setup_compat()in drivers/nvmem/nvmem.h. Update the nvmem dependency for these driversso they could load again:  at24 0-0050: 32768 byte 24c256 EEPROM, writable, 64 bytes/writeCc: Adrian Bunk &lt;bunk@kernel.org&gt;Cc: Bartosz Golaszewski &lt;brgl@bgdev.pl&gt;Cc: Srinivas Kandagatla &lt;srinivas.kandagatla@linaro.org&gt;Cc: stable@vger.kernel.org # v5.2+Signed-off-by: Arseny Solokha &lt;asolokha@kb.kras.ru&gt;Link: https://lore.kernel.org/r/20190716111236.27803-1-asolokha@kb.kras.ruSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/misc/eeprom/Kconfig</description>
        <pubDate>Tue, 16 Jul 2019 11:12:36 +0000</pubDate>
        <dc:creator>Arseny Solokha &lt;asolokha@kb.kras.ru&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/misc/eeprom/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/misc/eeprom/Kconfig</description>
        <pubDate>Sun, 19 May 2019 12:07:45 +0000</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@linutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>37cf28d3 - eeprom: at24: add support for 24c2048</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/eeprom/Kconfig#37cf28d3</link>
        <description>eeprom: at24: add support for 24c2048Works with ST M24M02.Signed-off-by: Adrian Bunk &lt;bunk@kernel.org&gt;Signed-off-by: Bartosz Golaszewski &lt;brgl@bgdev.pl&gt;

            List of files:
            /linux-6.15/drivers/misc/eeprom/Kconfig</description>
        <pubDate>Thu, 29 Nov 2018 19:58:58 +0000</pubDate>
        <dc:creator>Adrian Bunk &lt;bunk@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>3b7584a2 - eeprom: New ee1004 driver for DDR4 memory</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/eeprom/Kconfig#3b7584a2</link>
        <description>eeprom: New ee1004 driver for DDR4 memoryThe EEPROMs which hold the SPD data on DDR4 memory modules are nolonger standard AT24C02-compatible EEPROMs. They are 512-byte EEPROMswhich use only 1 I2C address for data access. You need to switchbetween the lower page and the upper page of data by sending commandson the SMBus.Signed-off-by: Jean Delvare &lt;jdelvare@suse.de&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/misc/eeprom/Kconfig</description>
        <pubDate>Sun, 07 Oct 2018 17:05:00 +0000</pubDate>
        <dc:creator>Jean Delvare &lt;jdelvare@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>5c015258 - eeprom: at24: add basic regmap_i2c support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/eeprom/Kconfig#5c015258</link>
        <description>eeprom: at24: add basic regmap_i2c supportThis patch adds basic regmap support to be used by subsequentpatches of this series.Signed-off-by: Heiner Kallweit &lt;hkallweit1@gmail.com&gt;Signed-off-by: Bartosz Golaszewski &lt;brgl@bgdev.pl&gt;

            List of files:
            /linux-6.15/drivers/misc/eeprom/Kconfig</description>
        <pubDate>Tue, 28 Nov 2017 20:51:40 +0000</pubDate>
        <dc:creator>Heiner Kallweit &lt;hkallweit1@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>cfad6425 - eeprom: Add IDT 89HPESx EEPROM/CSR driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/eeprom/Kconfig#cfad6425</link>
        <description>eeprom: Add IDT 89HPESx EEPROM/CSR driver  This driver provides an access to EEPROM of IDT PCIe-switches. IDT PCIe-switches expose a simple SMBus interface to perform IO-operations from/toEEPROM, which is located at private (so called Master) SMBus. The drivercreates a simple binary sysfs-file to have an access to the EEPROM usingthe SMBus-slave interface in the i2c-device susfs-directory:     /sys/bus/i2c/devices/&lt;bus&gt;-&lt;devaddr&gt;/eepromIn case if read-only flag is specified at dts-node of the device, User-spaceapplications won&apos;t be able to write to the EEPROM sysfs-node.  Additionally IDT 89HPESx SMBus interface has an ability to read/writevalues of device CSRs. This driver exposes debugfs-file to perform simpleIO-operations using that ability for just basic debug purpose. Particularlythe next file is created in the specific debugfs-directory:     /sys/kernel/debug/idt_csr/Format of the debugfs-file value is:     $ cat /sys/kernel/debug/idt_csr/&lt;bus&gt;-&lt;devaddr&gt;/&lt;devname&gt;;     &lt;CSR address&gt;:&lt;CSR value&gt;So reading the content of the file gives current CSR address and it value.If User-space application wishes to change current CSR address, it can justwrite a proper value to the sysfs-file:     $ echo &quot;&lt;CSR address&gt;&quot; &gt;         /sys/kernel/debug/idt_csr/&lt;bus&gt;-&lt;devaddr&gt;/&lt;devname&gt;If it wants to change the CSR value as well, the format of the writeoperation is:     $ echo &quot;&lt;CSR address&gt;:&lt;CSR value&gt;&quot; &gt; \         /sys/kernel/debug/idt_csr/&lt;bus&gt;-&lt;devaddr&gt;/&lt;devname&gt;;CSR address and value can be any of hexadecimal, decimal or octal format.Signed-off-by: Serge Semin &lt;fancer.lancer@gmail.com&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/misc/eeprom/Kconfig</description>
        <pubDate>Fri, 13 Jan 2017 12:16:52 +0000</pubDate>
        <dc:creator>Serge Semin &lt;fancer.lancer@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>01973a01 - eeprom: at25: remove nvmem regmap dependency</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/eeprom/Kconfig#01973a01</link>
        <description>eeprom: at25: remove nvmem regmap dependencyThis patch moves to nvmem support in the driver to use callback insteadof regmap.Signed-off-by: Srinivas Kandagatla &lt;srinivas.kandagatla@linaro.org&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/misc/eeprom/Kconfig</description>
        <pubDate>Sun, 24 Apr 2016 19:28:07 +0000</pubDate>
        <dc:creator>Srinivas Kandagatla &lt;srinivas.kandagatla@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>cf0361a2 - eeprom: at24: remove nvmem regmap dependency</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/eeprom/Kconfig#cf0361a2</link>
        <description>eeprom: at24: remove nvmem regmap dependencyThis patch moves to nvmem support in the driver to use callback insteadof regmap.Signed-off-by: Srinivas Kandagatla &lt;srinivas.kandagatla@linaro.org&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/misc/eeprom/Kconfig</description>
        <pubDate>Sun, 24 Apr 2016 19:28:06 +0000</pubDate>
        <dc:creator>Srinivas Kandagatla &lt;srinivas.kandagatla@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>1c4b6e2c - eeprom: 93xx46: extend driver to plug into the NVMEM framework</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/eeprom/Kconfig#1c4b6e2c</link>
        <description>eeprom: 93xx46: extend driver to plug into the NVMEM frameworkAdd a regmap for accessing the EEPROM, and then use that with theNVMEM framework. Enable backward compatibility in the NVMEM configstructure, so that the &apos;eeprom&apos; file in sys is provided by theframework.Signed-off-by: Andrew Lunn &lt;andrew@lunn.ch&gt;Acked-by: Srinivas Kandagatla &lt;srinivas.kandagatla@linaro.org&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/misc/eeprom/Kconfig</description>
        <pubDate>Fri, 26 Feb 2016 19:59:23 +0000</pubDate>
        <dc:creator>Andrew Lunn &lt;andrew@lunn.ch&gt;</dc:creator>
    </item>
<item>
        <title>5a99f570 - eeprom: at25: extend driver to plug into the NVMEM framework</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/eeprom/Kconfig#5a99f570</link>
        <description>eeprom: at25: extend driver to plug into the NVMEM frameworkAdd a regmap for accessing the EEPROM, and then use that with theNVMEM framework. Enable backwards compatibility in the NVMEM config,so that the &apos;eeprom&apos; file in sys is provided by the framework.Signed-off-by: Andrew Lunn &lt;andrew@lunn.ch&gt;Acked-by: Srinivas Kandagatla &lt;srinivas.kandagatla@linaro.org&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/misc/eeprom/Kconfig</description>
        <pubDate>Fri, 26 Feb 2016 19:59:22 +0000</pubDate>
        <dc:creator>Andrew Lunn &lt;andrew@lunn.ch&gt;</dc:creator>
    </item>
<item>
        <title>57d15550 - eeprom: at24: extend driver to plug into the NVMEM framework</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/eeprom/Kconfig#57d15550</link>
        <description>eeprom: at24: extend driver to plug into the NVMEM frameworkAdd a regmap for accessing the EEPROM, and then use that with theNVMEM framework. Set the NVMEM config structure to enable backward, sothat the &apos;eeprom&apos; file in sys is provided by the framework.Signed-off-by: Andrew Lunn &lt;andrew@lunn.ch&gt;Acked-by: Srinivas Kandagatla &lt;srinivas.kandagatla@linaro.org&gt;Tested-by: Bartosz Golaszewski &lt;bgolaszewski@baylibre.com&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/misc/eeprom/Kconfig</description>
        <pubDate>Fri, 26 Feb 2016 19:59:20 +0000</pubDate>
        <dc:creator>Andrew Lunn &lt;andrew@lunn.ch&gt;</dc:creator>
    </item>
<item>
        <title>3d0b16a6 - nvmem: sunxi: Move the SID driver to the nvmem framework</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/eeprom/Kconfig#3d0b16a6</link>
        <description>nvmem: sunxi: Move the SID driver to the nvmem frameworkNow that we have the nvmem framework, we can consolidate the commondriver code. Move the driver to the framework, and hopefully, it willfix the sysfs file creation race.Signed-off-by: Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;[srinivas.kandagatla: Moved to regmap based EEPROM framework]Signed-off-by: Srinivas Kandagatla &lt;srinivas.kandagatla@linaro.org&gt;Tested-by: Philipp Zabel &lt;p.zabel@pengutronix.de&gt;Tested-by: Rajendra Nayak &lt;rnayak@codeaurora.org&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/misc/eeprom/Kconfig</description>
        <pubDate>Mon, 27 Jul 2015 11:17:09 +0000</pubDate>
        <dc:creator>Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;</dc:creator>
    </item>
<item>
        <title>9fd379e9 - ARM: sunxi: Initial support for Allwinner&apos;s Security ID fuses</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/eeprom/Kconfig#9fd379e9</link>
        <description>ARM: sunxi: Initial support for Allwinner&apos;s Security ID fusesAllwinner has electric fuses (efuse) on their line of chips. This driverreads those fuses, seeds the kernel entropy and exports them as a sysfsnode.These fuses are most likely to be programmed at the factory, encodingthings like Chip ID, some sort of serial number, etc. and appear to bereasonably unique.While in theory, these should be writeable by the user, it will probablybe inconvenient to do so. Allwinner recommends that a certain input pin,labeled &apos;efuse_vddq&apos;, be connected to GND. To write these fuses however,a 2.5 V programming voltage needs to be applied to this pin.Even so, they can still be used to generate a board-unique mac from,board unique RSA key and seed the kernel RNG.On sun7i additional storage is available, this is initially used for anUEFI BOOT key, Secure JTAG key, HDMI-HDCP key and vendor specific keys.Currently supported are the following known chips:Allwinner sun4i (A10)Allwinner sun5i (A10s, A13)Allwinner sun7i (A20)Signed-off-by: Oliver Schinagl &lt;oliver@schinagl.nl&gt;Acked-by: Maxime Ripard &lt;maxime.ripard@free-electrons.com&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/misc/eeprom/Kconfig</description>
        <pubDate>Tue, 03 Sep 2013 10:33:27 +0000</pubDate>
        <dc:creator>Oliver Schinagl &lt;oliver@schinagl.nl&gt;</dc:creator>
    </item>
<item>
        <title>81e34f91 - drivers: misc: at24: mention other supported types in Kconfig</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/misc/eeprom/Kconfig#81e34f91</link>
        <description>drivers: misc: at24: mention other supported types in KconfigAs the at24 driver is able handle a bunch of serial storage chips other thanEEPROMs this is now mentioned in Kconfig.Signed-off-by: Lars Poeschel &lt;poeschel@lemonage.de&gt;Signed-off-by: Wolfram Sang &lt;w.sang@pengutronix.de&gt;

            List of files:
            /linux-6.15/drivers/misc/eeprom/Kconfig</description>
        <pubDate>Wed, 05 Dec 2012 09:43:07 +0000</pubDate>
        <dc:creator>Lars Poeschel &lt;poeschel@lemonage.de&gt;</dc:creator>
    </item>
</channel>
</rss>
