<?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>332857fd - of: Allow overlay kunit tests to run CONFIG_OF_OVERLAY=n</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/of/Kconfig#332857fd</link>
        <description>of: Allow overlay kunit tests to run CONFIG_OF_OVERLAY=nSome configurations want to enable CONFIG_KUNIT without enablingCONFIG_OF_OVERLAY. The kunit overlay code already skips ifCONFIG_OF_OVERLAY isn&apos;t enabled, so this select here isn&apos;t really doinganything besides making it easier to run the tests without themskipping. Remove the select and move the config setting to thedrivers/of/.kunitconfig file so that the overlay tests can be run withor without CONFIG_OF_OVERLAY set to test either behavior.Fixes: 5c9dd72d8385 (&quot;of: Add a KUnit test for overlays and test managed APIs&quot;)Signed-off-by: Stephen Boyd &lt;sboyd@kernel.org&gt;Acked-by: Geert Uytterhoeven &lt;geert+renesas@glider.be&gt;Link: https://lore.kernel.org/r/20241016212016.887552-1-sboyd@kernel.orgSigned-off-by: Rob Herring (Arm) &lt;robh@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/of/Kconfig</description>
        <pubDate>Wed, 16 Oct 2024 21:20:15 +0000</pubDate>
        <dc:creator>Stephen Boyd &lt;sboyd@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>654102df - kbuild: add generic support for built-in boot DTBs</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/of/Kconfig#654102df</link>
        <description>kbuild: add generic support for built-in boot DTBsSome architectures embed boot DTBs in vmlinux. A potential issue forthese architectures is a race condition during parallel builds becauseKbuild descends into arch/*/boot/dts/ twice.One build thread is initiated by the &apos;dtbs&apos; target, which is aprerequisite of the &apos;all&apos; target in the top-level Makefile:  ifdef CONFIG_OF_EARLY_FLATTREE  all: dtbs  endifFor architectures that support the built-in boot dtb, arch/*/boot/dts/is visited also during the ordinary directory traversal in order tobuild obj-y objects that wrap DTBs.Since these build threads are unaware of each other, they can runsimultaneously during parallel builds.This commit introduces a generic build rule to scripts/Makefile.vmlinuxto support embedded boot DTBs in a race-free way. Architectures thatwant to use this rule need to select CONFIG_GENERIC_BUILTIN_DTB.After the migration, Makefiles under arch/*/boot/dts/ will be visitedonly once to build only *.dtb files.This change also aims to unify the CONFIG options used for built-in DTBssupport. Currently, different architectures use different CONFIG optionsfor the same purposes.With this commit, the CONFIG options will be unified as follows: - CONFIG_GENERIC_BUILTIN_DTB   This enables the generic rule for built-in boot DTBs. This will be   renamed to CONFIG_BUILTIN_DTB after all architectures migrate to the   generic rule. - CONFIG_BUILTIN_DTB_NAME   This specifies the path to the embedded DTB.   (relative to arch/*/boot/dts/) - CONFIG_BUILTIN_DTB_ALL   If this is enabled, all DTB files compiled under arch/*/boot/dts/ are   embedded into vmlinux. Only used by MIPS.Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/of/Kconfig</description>
        <pubDate>Mon, 23 Sep 2024 07:56:03 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>5c9dd72d - of: Add a KUnit test for overlays and test managed APIs</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/of/Kconfig#5c9dd72d</link>
        <description>of: Add a KUnit test for overlays and test managed APIsTest the KUnit test managed overlay APIs. Confirm that platform devicesare created and destroyed properly. This provides us confidence that thetest managed APIs work correctly and can be relied upon to provide testswith fake platform devices and device nodes via overlays compiled intothe kernel image.Cc: Rob Herring &lt;robh@kernel.org&gt;Cc: Saravana Kannan &lt;saravanak@google.com&gt;Cc: Daniel Latypov &lt;dlatypov@google.com&gt;Cc: Brendan Higgins &lt;brendan.higgins@linux.dev&gt;Reviewed-by: David Gow &lt;davidgow@google.com&gt;Cc: Rae Moar &lt;rmoar@google.com&gt;Reviewed-by: Rob Herring (Arm) &lt;robh@kernel.org&gt;Signed-off-by: Stephen Boyd &lt;sboyd@kernel.org&gt;Link: https://lore.kernel.org/r/20240718210513.3801024-5-sboyd@kernel.org

            List of files:
            /linux-6.15/drivers/of/Kconfig</description>
        <pubDate>Thu, 18 Jul 2024 21:05:03 +0000</pubDate>
        <dc:creator>Stephen Boyd &lt;sboyd@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>893ecc6d - of: Add KUnit test to confirm DTB is loaded</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/of/Kconfig#893ecc6d</link>
        <description>of: Add KUnit test to confirm DTB is loadedAdd a KUnit test that confirms a DTB has been loaded, i.e. there is aroot node, and that the of_have_populated_dt() API works properly. Weskip the test when CONFIG_OF_EARLY_FLATREE=n because in that case weknow architecture code hasn&apos;t called unflatten_(and_copy_)?device_tree()which would populate some sort of root node.Cc: Rob Herring &lt;robh+dt@kernel.org&gt;Cc: Frank Rowand &lt;frowand.list@gmail.com&gt;Reviewed-by: David Gow &lt;davidgow@google.com&gt;Cc: Brendan Higgins &lt;brendan.higgins@linux.dev&gt;Signed-off-by: Stephen Boyd &lt;sboyd@kernel.org&gt;Link: https://lore.kernel.org/r/20240217010557.2381548-8-sboyd@kernel.orgSigned-off-by: Rob Herring &lt;robh@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/of/Kconfig</description>
        <pubDate>Sat, 17 Feb 2024 01:05:56 +0000</pubDate>
        <dc:creator>Stephen Boyd &lt;sboyd@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>7b937cc2 - of: Create of_root if no dtb provided by firmware</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/of/Kconfig#7b937cc2</link>
        <description>of: Create of_root if no dtb provided by firmwareWhen enabling CONFIG_OF on a platform where &apos;of_root&apos; is not populatedby firmware, we end up without a root node. In order to apply overlaysand create subnodes of the root node, we need one. Create this root nodeby unflattening an empty builtin dtb.If firmware provides a flattened device tree (FDT) then the FDT isunflattened via setup_arch(). Otherwise, the call tounflatten(_and_copy)?_device_tree() will create an empty root node.We make of_have_populated_dt() return true only if the DTB was loaded byfirmware so that existing callers don&apos;t change behavior after thispatch. The call in the of platform code is removed because it preventsoverlays from creating platform devices when the empty root node isused.[sboyd@kernel.org: Update of_have_populated_dt() to treat this empty dtbas not populated. Drop setup_of() initcall]Signed-off-by: Frank Rowand &lt;frowand.list@gmail.com&gt;Link: https://lore.kernel.org/r/20230317053415.2254616-2-frowand.list@gmail.comCc: Rob Herring &lt;robh+dt@kernel.org&gt;Signed-off-by: Stephen Boyd &lt;sboyd@kernel.org&gt;Link: https://lore.kernel.org/r/20240217010557.2381548-3-sboyd@kernel.orgSigned-off-by: Rob Herring &lt;robh@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/of/Kconfig</description>
        <pubDate>Sat, 17 Feb 2024 01:05:51 +0000</pubDate>
        <dc:creator>Frank Rowand &lt;frowand.list@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>7e08baf6 - of: make OF_EARLY_FLATTREE depend on HAS_IOMEM</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/of/Kconfig#7e08baf6</link>
        <description>of: make OF_EARLY_FLATTREE depend on HAS_IOMEMOn s390 systems (aka mainframes), it has classic channel devices fornetworking and permanent storage that are currently even more commonthan PCI devices. Hence it could have a fully functional s390 kernelwith CONFIG_PCI=n, then the relevant iomem mapping functions[including ioremap(), devm_ioremap(), etc.] are not available.In LKP error report at below on s390:------ld: kernel/dma/coherent.o: in function `dma_init_coherent_memory&apos;:coherent.c:(.text+0x102): undefined reference to `memremap&apos;ld: coherent.c:(.text+0x226): undefined reference to `memunmap&apos;ld: kernel/dma/coherent.o: in function `dma_declare_coherent_memory&apos;:coherent.c:(.text+0x8b8): undefined reference to `memunmap&apos;ld: kernel/dma/coherent.o: in function `dma_release_coherent_memory&apos;:coherent.c:(.text+0x9aa): undefined reference to `memunmap&apos;------In the config file, several Kconfig options are:------&apos;# CONFIG_PCI is not set&apos;CONFIG_OF_EARLY_FLATTREE=yCONFIG_DMA_DECLARE_COHERENT=y------So, enabling OF_EARLY_FLATTREE will select DMA_DECLARE_COHERENTand cause above building errors even though they are not neededbecause CONFIG_PCI is disabled.Here let OF_EARLY_FLATTREE depend on HAS_IOMEM so that it won&apos;tbe built to cause compiling error if PCI is unset.Reported-by: kernel test robot &lt;lkp@intel.com&gt;Closes: https://lore.kernel.org/oe-kbuild-all/202306211329.ticOJCSv-lkp@intel.com/Signed-off-by: Baoquan He &lt;bhe@redhat.com&gt;Cc: Rob Herring &lt;robh+dt@kernel.org&gt;Cc: Frank Rowand &lt;frowand.list@gmail.com&gt;Cc: devicetree@vger.kernel.orgLink: https://lore.kernel.org/r/20230707135852.24292-9-bhe@redhat.comSigned-off-by: Rob Herring &lt;robh@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/of/Kconfig</description>
        <pubDate>Fri, 07 Jul 2023 13:58:52 +0000</pubDate>
        <dc:creator>Baoquan He &lt;bhe@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>c00a60d6 - of: address: always use dma_default_coherent for default coherency</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/of/Kconfig#c00a60d6</link>
        <description>of: address: always use dma_default_coherent for default coherencyAs for now all arches have dma_default_coherent reflecting defaultDMA coherency for of devices, so there is no need to have a standaloneconfig option.Signed-off-by: Jiaxun Yang &lt;jiaxun.yang@flygoat.com&gt;Reviewed-by: Rob Herring &lt;robh@kernel.org&gt;Acked-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt; (powerpc)Signed-off-by: Christoph Hellwig &lt;hch@lst.de&gt;

            List of files:
            /linux-6.15/drivers/of/Kconfig</description>
        <pubDate>Sat, 01 Apr 2023 09:15:31 +0000</pubDate>
        <dc:creator>Jiaxun Yang &lt;jiaxun.yang@flygoat.com&gt;</dc:creator>
    </item>
<item>
        <title>f381b31a - of: update kconfig unittest help</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/of/Kconfig#f381b31a</link>
        <description>of: update kconfig unittest helpAdd more information about the impact the of unittests have on thelive devicetree and why the tests should only be enabled for developerkernels.Add information about processing the test output such that theresults are more complete and comprehendable.Signed-off-by: Frank Rowand &lt;frowand.list@gmail.com&gt;Link: https://lore.kernel.org/r/20230213185702.395776-4-frowand.list@gmail.comSigned-off-by: Rob Herring &lt;robh@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/of/Kconfig</description>
        <pubDate>Mon, 13 Feb 2023 18:56:58 +0000</pubDate>
        <dc:creator>Frank Rowand &lt;frowand.list@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>e330fb14 - of: net: move of_net under net/</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/of/Kconfig#e330fb14</link>
        <description>of: net: move of_net under net/Rob suggests to move of_net.c from under drivers/of/ somewhereto the networking code.Suggested-by: Rob Herring &lt;robh@kernel.org&gt;Signed-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;Reviewed-by: Rob Herring &lt;robh@kernel.org&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/of/Kconfig</description>
        <pubDate>Thu, 07 Oct 2021 01:06:54 +0000</pubDate>
        <dc:creator>Jakub Kicinski &lt;kuba@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>1ee292a6 - of: Drop reserved mem dependency on DMA_DECLARE_COHERENT and DMA_CMA</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/of/Kconfig#1ee292a6</link>
        <description>of: Drop reserved mem dependency on DMA_DECLARE_COHERENT and DMA_CMAReserved memory regions can be used for more than just DMA regions, soonly enabling on DMA_DECLARE_COHERENT (via HAS_DMA) or DMA_CMA is wrong.This effectively doesn&apos;t matter except for the few cases arches selectNO_DMA.At least, these users of RESERVEDMEM_OF_DECLARE depend on reserved memorysupport:arch/riscv/mm/init.c:RESERVEDMEM_OF_DECLARE(elfcorehdr, &quot;linux,elfcorehdr&quot;, elfcore_hdr_setup);drivers/memory/tegra/tegra210-emc-table.c:RESERVEDMEM_OF_DECLARE(tegra210_emc_table, &quot;nvidia,tegra210-emc-table&quot;,drivers/soc/fsl/qbman/bman_ccsr.c:RESERVEDMEM_OF_DECLARE(bman_fbpr, &quot;fsl,bman-fbpr&quot;, bman_fbpr);drivers/soc/fsl/qbman/qman_ccsr.c:RESERVEDMEM_OF_DECLARE(qman_fqd, &quot;fsl,qman-fqd&quot;, qman_fqd);drivers/soc/fsl/qbman/qman_ccsr.c:RESERVEDMEM_OF_DECLARE(qman_pfdr, &quot;fsl,qman-pfdr&quot;, qman_pfdr);Let&apos;s simplify things and enable OF_RESERVED_MEM when OF_EARLY_FLATTREE isenabled.Cc: Christoph Hellwig &lt;hch@lst.de&gt;Signed-off-by: Rob Herring &lt;robh@kernel.org&gt;Link: https://lore.kernel.org/r/20210527223217.1572631-1-robh@kernel.org

            List of files:
            /linux-6.15/drivers/of/Kconfig</description>
        <pubDate>Thu, 27 May 2021 22:32:17 +0000</pubDate>
        <dc:creator>Rob Herring &lt;robh@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>14b26b12 - net: phy: Move of_mdio from drivers/of to drivers/net/mdio</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/of/Kconfig#14b26b12</link>
        <description>net: phy: Move of_mdio from drivers/of to drivers/net/mdioBetter place for of_mdio.c is drivers/net/mdio.Move of_mdio.c from drivers/of to drivers/net/mdioSigned-off-by: Calvin Johnson &lt;calvin.johnson@oss.nxp.com&gt;Acked-by: Rob Herring &lt;robh@kernel.org&gt;Signed-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/of/Kconfig</description>
        <pubDate>Thu, 08 Oct 2020 14:47:06 +0000</pubDate>
        <dc:creator>Calvin Johnson &lt;calvin.johnson@oss.nxp.com&gt;</dc:creator>
    </item>
<item>
        <title>dabf6b36 - of: Add OF_DMA_DEFAULT_COHERENT &amp; select it on powerpc</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/of/Kconfig#dabf6b36</link>
        <description>of: Add OF_DMA_DEFAULT_COHERENT &amp; select it on powerpcThere&apos;s an OF helper called of_dma_is_coherent(), which checks if adevice has a &quot;dma-coherent&quot; property to see if the device is coherentfor DMA.But on some platforms devices are coherent by default, and on someplatforms it&apos;s not possible to update existing device trees to add the&quot;dma-coherent&quot; property.So add a Kconfig symbol to allow arch code to tellof_dma_is_coherent() that devices are coherent by default, regardlessof the presence of the property.Select that symbol on powerpc when NOT_COHERENT_CACHE is not set, ie.when the system has a coherent cache.Fixes: 92ea637edea3 (&quot;of: introduce of_dma_is_coherent() helper&quot;)Cc: stable@vger.kernel.org # v3.16+Reported-by: Christian Zigotzky &lt;chzigotzky@xenosoft.de&gt;Tested-by: Christian Zigotzky &lt;chzigotzky@xenosoft.de&gt;Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Reviewed-by: Ulf Hansson &lt;ulf.hansson@linaro.org&gt;Signed-off-by: Rob Herring &lt;robh@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/of/Kconfig</description>
        <pubDate>Sun, 26 Jan 2020 11:52:47 +0000</pubDate>
        <dc:creator>Michael Ellerman &lt;mpe@ellerman.id.au&gt;</dc:creator>
    </item>
<item>
        <title>ff4c25f2 - dma-mapping: improve selection of dma_declare_coherent availability</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/of/Kconfig#ff4c25f2</link>
        <description>dma-mapping: improve selection of dma_declare_coherent availabilityThis API is primarily used through DT entries, but two architecturesand two drivers call it directly.  So instead of selecting the configsymbol for random architectures pull it in implicitly for the actualusers.  Also rename the Kconfig option to describe the feature better.Signed-off-by: Christoph Hellwig &lt;hch@lst.de&gt;Acked-by: Paul Burton &lt;paul.burton@mips.com&gt; # MIPSAcked-by: Lee Jones &lt;lee.jones@linaro.org&gt;Reviewed-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/of/Kconfig</description>
        <pubDate>Sun, 03 Feb 2019 19:12:02 +0000</pubDate>
        <dc:creator>Christoph Hellwig &lt;hch@lst.de&gt;</dc:creator>
    </item>
<item>
        <title>34e04eed - of: select OF_RESERVED_MEM automatically</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/of/Kconfig#34e04eed</link>
        <description>of: select OF_RESERVED_MEM automaticallyThe OF_RESERVED_MEM can be used if we have either CMA or the genericdeclare coherent code built and we support the early flattened DT.So don&apos;t bother making it a user visible options that is selectedby most configs that fit the above category, but just select it whenthe requirements are met.Signed-off-by: Christoph Hellwig &lt;hch@lst.de&gt;Reviewed-by: Rob Herring &lt;robh@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/of/Kconfig</description>
        <pubDate>Fri, 01 Feb 2019 09:10:52 +0000</pubDate>
        <dc:creator>Christoph Hellwig &lt;hch@lst.de&gt;</dc:creator>
    </item>
<item>
        <title>39a751a4 - of: change overlay apply input data from unflattened to FDT</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/of/Kconfig#39a751a4</link>
        <description>of: change overlay apply input data from unflattened to FDTMove duplicating and unflattening of an overlay flattened devicetree(FDT) into the overlay application code.  To accomplish this,of_overlay_apply() is replaced by of_overlay_fdt_apply().The copy of the FDT (aka &quot;duplicate FDT&quot;) now belongs to devicetreecode, which is thus responsible for freeing the duplicate FDT.  Thecaller of of_overlay_fdt_apply() remains responsible for freeing theoriginal FDT.The unflattened devicetree now belongs to devicetree code, which isthus responsible for freeing the unflattened devicetree.These ownership changes prevent early freeing of the duplicated FDTor the unflattened devicetree, which could result in use after freeerrors.of_overlay_fdt_apply() is a private function for the anticipatedoverlay loader.Update unittest.c to use of_overlay_fdt_apply() instead ofof_overlay_apply().Move overlay fragments from artificial locations indrivers/of/unittest-data/tests-overlay.dtsi into one devicetreesource file per overlay.  This led to changes indrivers/of/unitest-data/Makefile and drivers/of/unitest.c.  - Add overlay directives to the overlay devicetree source files so    that dtc will compile them as true overlays into one FDT data    chunk per overlay.  - Set CFLAGS for drivers/of/unittest-data/testcases.dts so that    symbols will be generated for overlay resolution of overlays    that are no longer artificially contained in testcases.dts  - Unflatten and apply each unittest overlay FDT using    of_overlay_fdt_apply().  - Enable the of_resolve_phandles() check for whether the unflattened    overlay is detached.  This check was previously disabled because the    overlays from tests-overlay.dtsi were not unflattened into detached    trees.  - Other changes to unittest.c infrastructure to manage multiple test    FDTs built into the kernel image (access by name instead of    arbitrary number).  - of_unittest_overlay_high_level(): previously unused code to add    properties from the overlay_base devicetree to the live tree    was triggered by the restructuring of tests-overlay.dtsi and thus    testcases.dts.  This exposed two bugs: (1) the need to dup a    property before adding it, and (2) property &apos;name&apos; is    auto-generated in the unflatten code and thus will be a duplicate    in the __symbols__ node - do not treat this duplicate as an error.Signed-off-by: Frank Rowand &lt;frank.rowand@sony.com&gt;

            List of files:
            /linux-6.15/drivers/of/Kconfig</description>
        <pubDate>Mon, 12 Feb 2018 08:19:42 +0000</pubDate>
        <dc:creator>Frank Rowand &lt;frank.rowand@sony.com&gt;</dc:creator>
    </item>
<item>
        <title>4670d610 - PCI: Move OF-related PCI functions into PCI core</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/of/Kconfig#4670d610</link>
        <description>PCI: Move OF-related PCI functions into PCI coreFollowing what has been done for other subsystems, move the remaining PCIrelated code out of drivers/of/ and into drivers/pci/of.cWith this, we can kill a few kconfig symbols.Signed-off-by: Rob Herring &lt;robh@kernel.org&gt;[bhelgaas: minor whitespace, comment cleanups]Signed-off-by: Bjorn Helgaas &lt;bhelgaas@google.com&gt;Cc: Frank Rowand &lt;frowand.list@gmail.com&gt;

            List of files:
            /linux-6.15/drivers/of/Kconfig</description>
        <pubDate>Wed, 17 Jan 2018 23:36:39 +0000</pubDate>
        <dc:creator>Rob Herring &lt;robh@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>af6074fc - of: Use SPDX license tag for DT files</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/of/Kconfig#af6074fc</link>
        <description>of: Use SPDX license tag for DT filesConvert remaining DT files to use SPDX-License-Identifier tags.Cc: Benjamin Herrenschmidt &lt;benh@kernel.crashing.org&gt;Cc: Guennadi Liakhovetski &lt;g.liakhovetski@gmx.de&gt;Cc: Paul Mackerras &lt;paulus@samba.org&gt;Cc: Pantelis Antoniou &lt;pantelis.antoniou@konsulko.com&gt;Reviewed-by: Frank Rowand &lt;frank.rowand@sony.com&gt;Reviewed-by: Philippe Ombredanne &lt;pombredanne@nexb.com&gt;Signed-off-by: Rob Herring &lt;robh@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/of/Kconfig</description>
        <pubDate>Wed, 27 Dec 2017 18:55:14 +0000</pubDate>
        <dc:creator>Rob Herring &lt;robh@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>6019a3d0 - of: enable unittests on UML</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/of/Kconfig#6019a3d0</link>
        <description>of: enable unittests on UMLThe unittests can run on UML, but OF_IRQ and OF_ADDRESS need to beenabled. Rework the kconfig dependencies to enable the unittests. Theunittests cannot build on Sparc, so we need to add an explicitdependency for !SPARC.There&apos;s one failure in overlay tests because the base DT is notunflattened early.Cc: Thomas Meyer &lt;thomas@m3y3r.de&gt;Signed-off-by: Rob Herring &lt;robh@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/of/Kconfig</description>
        <pubDate>Tue, 25 Jul 2017 19:46:56 +0000</pubDate>
        <dc:creator>Rob Herring &lt;robh@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>b56b5528 - of: make kobject and bin_attribute support configurable</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/of/Kconfig#b56b5528</link>
        <description>of: make kobject and bin_attribute support configurableHaving device_nodes be kobjects is only needed if sysfs or OF_DYNAMIC isenabled. Otherwise, having a kobject in struct device_node isunnecessary bloat in minimal kernel configurations.Likewise, bin_attribute is only needed in struct property when sysfs isenabled, so we can make it configurable too.Tested-by: Nicolas Pitre &lt;nico@linaro.org&gt;Reviewed-by: Frank Rowand &lt;frowand.list@gmail.com&gt;Acked-by: Grant Likely &lt;grant.likely@secretlab.ca&gt;Signed-off-by: Rob Herring &lt;robh@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/of/Kconfig</description>
        <pubDate>Wed, 04 Oct 2017 19:09:40 +0000</pubDate>
        <dc:creator>Rob Herring &lt;robh@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>a9843193 - mtd: Kill the OF_MTD Kconfig option</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/of/Kconfig#a9843193</link>
        <description>mtd: Kill the OF_MTD Kconfig optionCommit d48f62b9a0a0 (&quot;mtd: nand: move of_get_nand_xxx() helpers intonand_base.c&quot;) removed the drivers/of/of_mtd.c file but did not removethe associated OF_MTD Kconfig option.Signed-off-by: Boris Brezillon &lt;boris.brezillon@free-electrons.com&gt;

            List of files:
            /linux-6.15/drivers/of/Kconfig</description>
        <pubDate>Sat, 17 Sep 2016 17:47:58 +0000</pubDate>
        <dc:creator>Boris Brezillon &lt;boris.brezillon@free-electrons.com&gt;</dc:creator>
    </item>
</channel>
</rss>
