<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/source/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>0fc8f6200d2313278fbf4539bbab74677c685531 - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Kconfig#0fc8f6200d2313278fbf4539bbab74677c685531</link>
        <description>Merge drm/drm-fixes into drm-misc-fixesGetting fixes and updates from v7.1-rc1.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/drivers/mtd/Kconfig</description>
        <pubDate>Mon, 27 Apr 2026 10:26:49 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>8541d8f725c673db3bd741947f27974358b2e163 - Merge tag &apos;mtd/for-7.1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Kconfig#8541d8f725c673db3bd741947f27974358b2e163</link>
        <description>Merge tag &apos;mtd/for-7.1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linuxPull MTD updates from Miquel Raynal: &quot;MTD changes:   - mtdconcat finally makes it in, after several years of being merged     and reverted   - Baikal SoC support is being removed, so MTD bits are being removed     as well   - misc cleanups  NAND changes:   - SunXi driver support for new versions of the Allwinner NAND     controller.   - DT-binding improvements and cleanups.   - A few fixes (Realtek ECC and Winbond SPI NAND), aside with the     usual load of misc changes.  SPI NOR fixes:   - Enable die erase on MT35XU02GCBA. We knew this flash needed this     fixup since 7f77c561e227 (&quot;mtd: spi-nor: micron-st: add TODO for     fixing mt35xu02gcba&quot;) but did not add it due to lack of hardware to     test on.   - Fix locking on some Winbond w25q series flashes.   - Fix Auto Address Increment (AAI) writes on SST that flashes that     start on odd address. The write enable latch needs to be set again     after the single byte program&quot;* tag &apos;mtd/for-7.1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux: (44 commits)  mtd: spinand: winbond: Declare the QE bit on W25NxxJW  mtd: spi-nor: micron-st: Enable die erase support for MT35XU02GCBA  mtd: spi-nor: winbond: Fix locking support for w25q256jw  mtd: spi-nor: sst: Fix write enable before AAI sequence  mtd: spi-nor: winbond: Fix locking support for w25q64jvm  mtd: spi-nor: winbond: Fix locking support for w25q256jwm  dt-bindings: mtd: mxc-nand: add missing compatible string and ref to nand-controller-legacy.yaml  dt-bindings: mtd: gpmi-nand: ref to nand-controller-legacy.yaml  dt-bindings: mtd: refactor NAND bindings and add nand-controller-legacy.yaml  mtd: spinand: winbond: Clarify when to enable the HS bit  mtd: rawnand: sunxi: introduce maximize variable user data length  mtd: rawnand: sunxi: fix typos in comments  mtd: rawnand: sunxi: change error prone variable name  mtd: rawnand: sunxi: remove dead code  mtd: rawnand: sunxi: make the code more self-explanatory  mtd: rawnand: sunxi: replace hard coded value by a define - take2  mtd: rawnand: sunxi: do not count BBM bytes twice  mtd: rawnand: sunxi: fix sunxi_nfc_hw_ecc_read_extra_oob  mtd: rawnand: sunxi: sunxi_nand_ooblayout_free code clarification  mtd: cmdlinepart: use a flexible array member  ...

            List of files:
            /linux/drivers/mtd/Kconfig</description>
        <pubDate>Sat, 18 Apr 2026 02:57:04 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>43db6366fc2de02050e66389f5628d3fdc9af10a - mtd: Add driver for concatenating devices</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Kconfig#43db6366fc2de02050e66389f5628d3fdc9af10a</link>
        <description>mtd: Add driver for concatenating devicesIntroducing CONFIG_MTD_VIRT_CONCAT to separate the legacy flow from the newapproach, where only the concatenated partition is registered as an MTDdevice, while the individual partitions that form it are not registeredindependently, as they are typically not required by the user.CONFIG_MTD_VIRT_CONCAT is a boolean configuration option that depends onCONFIG_MTD_PARTITIONED_MASTER. When enabled, it allows flash nodes to beexposed as individual MTD devices along with the other partitions.The solution focuses on fixed-partitions description only as it depends ondevice boundaries. It supports multiple sets of concatenated devices, eachcomprising two or more partitions.    flash@0 {            reg = &lt;0&gt;;            partitions {                    compatible = &quot;fixed-partitions&quot;;                    part0@0 {                            part-concat-next = &lt;&amp;flash0_part1&gt;;                            label = &quot;part0_0&quot;;                            reg = &lt;0x0 0x800000&gt;;                    };                    flash0_part1: part1@800000 {                            label = &quot;part0_1&quot;;                            reg = &lt;800000 0x800000&gt;;                    };                    part2@1000000 {                            part-concat-next = &lt;&amp;flash1_part0&gt;;                            label = &quot;part0_2&quot;;                            reg = &lt;0x800000 0x800000&gt;;                    };            };    };    flash@1 {            reg = &lt;1&gt;;            partitions {                    compatible = &quot;fixed-partitions&quot;;                    flash1_part0: part1@0 {                            label = &quot;part1_0&quot;;                            reg = &lt;0x0 0x800000&gt;;                    };                    part1@800000 {                            label = &quot;part1_1&quot;;                            reg = &lt;0x800000 0x800000&gt;;                    };            };    };The partitions that gets created areflash@0part0_0-part0_1-concatflash@1part1_1part0_2-part1_0-concatSuggested-by: Bernhard Frauendienst &lt;kernel@nospam.obeliks.de&gt;Suggested-by: Miquel Raynal &lt;miquel.raynal@bootlin.com&gt;Signed-off-by: Amit Kumar Mahapatra &lt;amit.kumar-mahapatra@amd.com&gt;Signed-off-by: Luca Ceresoli &lt;luca.ceresoli@bootlin.com&gt;Signed-off-by: Miquel Raynal &lt;miquel.raynal@bootlin.com&gt;

            List of files:
            /linux/drivers/mtd/Kconfig</description>
        <pubDate>Wed, 04 Feb 2026 09:32:18 +0100</pubDate>
        <dc:creator>Amit Kumar Mahapatra &lt;amit.kumar-mahapatra@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>762f99f4f3cb41a775b5157dd761217beba65873 - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Kconfig#762f99f4f3cb41a775b5157dd761217beba65873</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 5.17 merge window.

            List of files:
            /linux/drivers/mtd/Kconfig</description>
        <pubDate>Sat, 15 Jan 2022 21:09:44 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>8632987380765dee716d460640aa58d58d52998e - Merge branch &apos;reset/of-get-optional-exclusive&apos; of git://git.pengutronix.de/pza/linux into timers/drivers/next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Kconfig#8632987380765dee716d460640aa58d58d52998e</link>
        <description>Merge branch &apos;reset/of-get-optional-exclusive&apos; of git://git.pengutronix.de/pza/linux into timers/drivers/next&quot;Add optional variant of of_reset_control_get_exclusive(). If therequested reset is not specified in the device tree, this functionreturns NULL instead of an error.&quot;This dependency is needed for the Generic Timer Module (a.k.a OSTM)support for RZ/G2L.Signed-off-by: Daniel Lezcano &lt;daniel.lezcano@linaro.org&gt;

            List of files:
            /linux/drivers/mtd/Kconfig</description>
        <pubDate>Thu, 09 Dec 2021 13:57:57 +0100</pubDate>
        <dc:creator>Daniel Lezcano &lt;daniel.lezcano@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>5d8dfaa71d87f742c53309b95cb6a8b274119027 - Merge tag &apos;v5.15&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Kconfig#5d8dfaa71d87f742c53309b95cb6a8b274119027</link>
        <description>Merge tag &apos;v5.15&apos; into nextSync up with the mainline to get the latest APIs and DT bindings.

            List of files:
            /linux/drivers/mtd/Kconfig</description>
        <pubDate>Thu, 09 Dec 2021 08:43:50 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>820e9906cf64142169134f35b996108303cf22ca - Merge branch &apos;for-5.16/asus&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Kconfig#820e9906cf64142169134f35b996108303cf22ca</link>
        <description>Merge branch &apos;for-5.16/asus&apos; into for-linus

            List of files:
            /linux/drivers/mtd/Kconfig</description>
        <pubDate>Fri, 05 Nov 2021 12:10:27 +0100</pubDate>
        <dc:creator>Jiri Kosina &lt;jkosina@suse.cz&gt;</dc:creator>
    </item>
<item>
        <title>40e64a88dadcfa168914065baf7f035de957bbe0 - Merge branch &apos;for-5.16-vsprintf-pgp&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Kconfig#40e64a88dadcfa168914065baf7f035de957bbe0</link>
        <description>Merge branch &apos;for-5.16-vsprintf-pgp&apos; into for-linus

            List of files:
            /linux/drivers/mtd/Kconfig</description>
        <pubDate>Tue, 02 Nov 2021 10:39:27 +0100</pubDate>
        <dc:creator>Petr Mladek &lt;pmladek@suse.com&gt;</dc:creator>
    </item>
<item>
        <title>e700ac213a0f793fb4f83098413303e3dd080892 - Merge branch &apos;pruss-fix&apos; into fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Kconfig#e700ac213a0f793fb4f83098413303e3dd080892</link>
        <description>Merge branch &apos;pruss-fix&apos; into fixesMerge in a fix for pruss reset issue caused by enabling pruss for am335x.

            List of files:
            /linux/drivers/mtd/Kconfig</description>
        <pubDate>Wed, 06 Oct 2021 06:55:44 +0200</pubDate>
        <dc:creator>Tony Lindgren &lt;tony@atomide.com&gt;</dc:creator>
    </item>
<item>
        <title>ffb1e76f4f32d2b8ea4189df0484980370476395 - Merge tag &apos;v5.15-rc2&apos; into spi-5.15</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Kconfig#ffb1e76f4f32d2b8ea4189df0484980370476395</link>
        <description>Merge tag &apos;v5.15-rc2&apos; into spi-5.15Linux 5.15-rc2

            List of files:
            /linux/drivers/mtd/Kconfig</description>
        <pubDate>Mon, 20 Sep 2021 16:56:58 +0200</pubDate>
        <dc:creator>Mark Brown &lt;broonie@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>d1b803f4ca4f25d6f171219d039f9410a10b29ee - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Kconfig#d1b803f4ca4f25d6f171219d039f9410a10b29ee</link>
        <description>Merge drm/drm-next into drm-intel-nextCatch-up on 5.15-rc1 and sync with drm-intel-gt-nextto prepare the PXP topic branch.Signed-off-by: Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;

            List of files:
            /linux/drivers/mtd/Kconfig</description>
        <pubDate>Wed, 15 Sep 2021 16:12:51 +0200</pubDate>
        <dc:creator>Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>d5dd580deb54483cce0cb5bbe3f1a132a28c767d - Merge drm/drm-next into drm-intel-gt-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Kconfig#d5dd580deb54483cce0cb5bbe3f1a132a28c767d</link>
        <description>Merge drm/drm-next into drm-intel-gt-nextClose the divergence which has caused patches not to apply andhave a solid baseline for the PXP patches that Rodrigo will senda topic branch PR for.Signed-off-by: Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;

            List of files:
            /linux/drivers/mtd/Kconfig</description>
        <pubDate>Wed, 15 Sep 2021 12:23:27 +0200</pubDate>
        <dc:creator>Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>2f76520561d01a5f37e6d6ed2c2e441b6a355a96 - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Kconfig#2f76520561d01a5f37e6d6ed2c2e441b6a355a96</link>
        <description>Merge drm/drm-next into drm-misc-nextKickstart new drm-misc-next cycle.Signed-off-by: Maxime Ripard &lt;maxime@cerno.tech&gt;

            List of files:
            /linux/drivers/mtd/Kconfig</description>
        <pubDate>Tue, 14 Sep 2021 09:25:30 +0200</pubDate>
        <dc:creator>Maxime Ripard &lt;maxime@cerno.tech&gt;</dc:creator>
    </item>
<item>
        <title>c2f4954c2d3fc4f77b46c67585e17a58df4ba8e4 - Merge branch &apos;linus&apos; into smp/urgent</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Kconfig#c2f4954c2d3fc4f77b46c67585e17a58df4ba8e4</link>
        <description>Merge branch &apos;linus&apos; into smp/urgentEnsure that all usage sites of get/put_online_cpus() except for thestruggler in drivers/thermal are gone. So the last user and the deprecatedinlines can be removed.

            List of files:
            /linux/drivers/mtd/Kconfig</description>
        <pubDate>Sat, 11 Sep 2021 00:38:47 +0200</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@linutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>6b6dc4f40c5264556223ba94693f20d83796ab1f - Merge tag &apos;mtd/for-5.15&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Kconfig#6b6dc4f40c5264556223ba94693f20d83796ab1f</link>
        <description>Merge tag &apos;mtd/for-5.15&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linuxPull MTD updates from Miquel Raynal: &quot;MTD changes:   - blkdevs:       - Simplify the refcounting in blktrans_{open, release}       - Simplify blktrans_getgeo       - Remove blktrans_ref_mutex       - Simplify blktrans_dev_get       - Use lockdep_assert_held       - Don&apos;t hold del_mtd_blktrans_dev in blktrans_{open, release}   - ftl:       - Don&apos;t cast away the type when calling add_mtd_blktrans_dev       - Don&apos;t cast away the type when calling add_mtd_blktrans_dev       - Use container_of() rather than cast       - Fix use-after-free       - Add discard support       - Allow use of MTD_RAM for testing purposes   - concat:       - Check _read, _write callbacks existence before assignment       - Judge callback existence based on the master   - maps:       - Maps: remove dead MTD map driver for PMC-Sierra MSP boards   - mtdblock:       - Warn if added for a NAND device       - Add comment about UBI block devices       - Update old JFFS2 mention in Kconfig   - partitions:       - Redboot: convert to YAML  NAND core changes:   - Repair Miquel Raynal&apos;s email address in MAINTAINERS   - Fix a couple of spelling mistakes in Kconfig   - bbt: Skip bad blocks when searching for the BBT in NAND   - Remove never changed ret variable  Raw NAND changes:   - cafe: Fix a resource leak in the error handling path of &apos;cafe_nand_probe()&apos;   - intel: Fix error handling in probe   - omap: Fix kernel doc warning on &apos;calcuate&apos; typo   - gpmc: Fix the ECC bytes vs. OOB bytes equation  SPI-NAND core changes:   - Properly fill the OOB area.   - Fix comment  SPI-NAND drivers changes:   - macronix: Add Quad support for serial NAND flash&quot;* tag &apos;mtd/for-5.15&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux: (30 commits)  mtd: rawnand: cafe: Fix a resource leak in the error handling path of &apos;cafe_nand_probe()&apos;  mtd_blkdevs: simplify the refcounting in blktrans_{open, release}  mtd_blkdevs: simplify blktrans_getgeo  mtd_blkdevs: remove blktrans_ref_mutex  mtd_blkdevs: simplify blktrans_dev_get  mtd/rfd_ftl: don&apos;t cast away the type when calling add_mtd_blktrans_dev  mtd/ftl: don&apos;t cast away the type when calling add_mtd_blktrans_dev  mtd_blkdevs: use lockdep_assert_held  mtd_blkdevs: don&apos;t hold del_mtd_blktrans_dev in blktrans_{open, release}  mtd: rawnand: intel: Fix error handling in probe  mtd: mtdconcat: Check _read, _write callbacks existence before assignment  mtd: mtdconcat: Judge callback existence based on the master  mtd: maps: remove dead MTD map driver for PMC-Sierra MSP boards  mtd: rfd_ftl: use container_of() rather than cast  mtd: rfd_ftl: fix use-after-free  mtd: rfd_ftl: add discard support  mtd: rfd_ftl: allow use of MTD_RAM for testing purposes  mtdblock: Warn if added for a NAND device  mtd: spinand: macronix: Add Quad support for serial NAND flash  mtdblock: Add comment about UBI block devices  ...

            List of files:
            /linux/drivers/mtd/Kconfig</description>
        <pubDate>Sun, 05 Sep 2021 19:50:12 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>42ba8c3b426342b39341e1b7a97f2387821bff86 - mtdblock: Add comment about UBI block devices</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Kconfig#42ba8c3b426342b39341e1b7a97f2387821bff86</link>
        <description>mtdblock: Add comment about UBI block devicesThere is a surprisingly large number of tutorialsthat suggest using mtdblock to mount SquashFS filesystemson flash devices, including NAND devices.Given this approach is suboptimal than using UBI, and giventhe UBI block device layer was introduced many years agospecifically with this use case in mind, add a smallcomment inviting users and developers to consider UBI block.Signed-off-by: Ezequiel Garcia &lt;ezequiel@collabora.com&gt;Signed-off-by: Miquel Raynal &lt;miquel.raynal@bootlin.com&gt;Link: https://lore.kernel.org/linux-mtd/20210801234509.18774-7-ezequiel@collabora.com

            List of files:
            /linux/drivers/mtd/Kconfig</description>
        <pubDate>Mon, 02 Aug 2021 01:45:08 +0200</pubDate>
        <dc:creator>Ezequiel Garcia &lt;ezequiel@collabora.com&gt;</dc:creator>
    </item>
<item>
        <title>6bc219b7b2cdd9d45ea15926d32c5e5c1d63881e - mtdblock: Update old JFFS2 mention in Kconfig</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Kconfig#6bc219b7b2cdd9d45ea15926d32c5e5c1d63881e</link>
        <description>mtdblock: Update old JFFS2 mention in KconfigJFFS2 can be mounted without &apos;mtdblock&apos; sincea really, really long time. Some git-logarchaeology shows that in 2006 it was possibleto use &apos;root=&apos; to mount a JFFS2 rootfs:  commit e9482b4374e2596e6f3f1ab30c4ea469f4ac6311  Author: Joern Engel &lt;joern@wh.fh-wedel.de&gt;  Date:   Tue May 30 14:25:46 2006 +0200      [MTD] Allow alternate JFFS2 mount variant for root filesystem.      With this patch, &quot;root=mtd3&quot; and &quot;root=mtd:foo&quot; work for a JFFS2 rootfs.However, there are still plenty of tutorials that mentionmtdblock, so users are still taking this route. Update the Kconfigto reflect this is no longer needed.Signed-off-by: Ezequiel Garcia &lt;ezequiel@collabora.com&gt;Signed-off-by: Miquel Raynal &lt;miquel.raynal@bootlin.com&gt;Link: https://lore.kernel.org/linux-mtd/20210801234509.18774-6-ezequiel@collabora.com

            List of files:
            /linux/drivers/mtd/Kconfig</description>
        <pubDate>Mon, 02 Aug 2021 01:45:07 +0200</pubDate>
        <dc:creator>Ezequiel Garcia &lt;ezequiel@collabora.com&gt;</dc:creator>
    </item>
<item>
        <title>cdd38c5f1ce4398ec58fec95904b75824daab7b5 - Merge remote-tracking branch &apos;net/master&apos;</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Kconfig#cdd38c5f1ce4398ec58fec95904b75824daab7b5</link>
        <description>Merge remote-tracking branch &apos;net/master&apos;

            List of files:
            /linux/drivers/mtd/Kconfig</description>
        <pubDate>Wed, 24 Feb 2021 13:36:58 +0100</pubDate>
        <dc:creator>Stefan Schmidt &lt;stefan@datenfreihafen.org&gt;</dc:creator>
    </item>
<item>
        <title>cbecf716ca618fd44feda6bd9a64a8179d031fc5 - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Kconfig#cbecf716ca618fd44feda6bd9a64a8179d031fc5</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 5.12 merge window.

            List of files:
            /linux/drivers/mtd/Kconfig</description>
        <pubDate>Tue, 23 Feb 2021 06:35:15 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>415e915fdfc775ad0c6675fde1008f6f43dd6251 - Merge tag &apos;v5.11&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/mtd/Kconfig#415e915fdfc775ad0c6675fde1008f6f43dd6251</link>
        <description>Merge tag &apos;v5.11&apos; into nextMerge with mainline to get latest APIs and device tree bindings.

            List of files:
            /linux/drivers/mtd/Kconfig</description>
        <pubDate>Tue, 23 Feb 2021 06:21:03 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
</channel>
</rss>
