<?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>8fc38062 - fbdev: Fix recursive dependencies wrt BACKLIGHT_CLASS_DEVICE</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/macintosh/Kconfig#8fc38062</link>
        <description>fbdev: Fix recursive dependencies wrt BACKLIGHT_CLASS_DEVICEDo not select BACKLIGHT_CLASS_DEVICE from FB_BACKLIGHT. The latteronly controls backlight support within fbdev core code and datastructures.Make fbdev drivers depend on BACKLIGHT_CLASS_DEVICE and let usersselect it explicitly. Fixes warnings about recursive dependencies,such aserror: recursive dependency detected!	symbol BACKLIGHT_CLASS_DEVICE is selected by FB_BACKLIGHT	symbol FB_BACKLIGHT is selected by FB_SH_MOBILE_LCDC	symbol FB_SH_MOBILE_LCDC depends on FB_DEVICE	symbol FB_DEVICE depends on FB_CORE	symbol FB_CORE is selected by DRM_GEM_DMA_HELPER	symbol DRM_GEM_DMA_HELPER is selected by DRM_PANEL_ILITEK_ILI9341	symbol DRM_PANEL_ILITEK_ILI9341 depends on BACKLIGHT_CLASS_DEVICEBACKLIGHT_CLASS_DEVICE is user-selectable, so making drivers adapt toit is the correct approach in any case. For most drivers, backlightsupport is also configurable separately.v3:- Select BACKLIGHT_CLASS_DEVICE in PowerMac defconfigs (Christophe)- Fix PMAC_BACKLIGHT module dependency corner cases (Christophe)v2:- s/BACKLIGHT_DEVICE_CLASS/BACKLIGHT_CLASS_DEVICE (Helge)- Fix fbdev driver-dependency corner case (Arnd)Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Reviewed-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20241216074450.8590-2-tzimmermann@suse.de

            List of files:
            /linux-6.15/drivers/macintosh/Kconfig</description>
        <pubDate>Mon, 16 Dec 2024 07:42:47 +0000</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>bc8744c6 - macintosh/ams: Fix unused variable warning</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/macintosh/Kconfig#bc8744c6</link>
        <description>macintosh/ams: Fix unused variable warningIf both CONFIG_SENSORS_AMS_PMU and CONFIG_SENSORS_AMS_I2C are unset,there is an unused variable warning in the ams driver:  drivers/macintosh/ams/ams-core.c: In function &apos;ams_init&apos;:  drivers/macintosh/ams/ams-core.c:181:29: warning: unused variable &apos;np&apos;    181 |         struct device_node *np;The driver needs at least one of the configs enabled in order toactually function. So fix the compiler warning by ensuring at least oneof the configs is enabled.Suggested-by: Christophe Leroy &lt;christophe.leroy@csgroup.eu&gt;Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Link: https://msgid.link/20240507140150.54630-1-mpe@ellerman.id.au

            List of files:
            /linux-6.15/drivers/macintosh/Kconfig</description>
        <pubDate>Tue, 07 May 2024 14:01:50 +0000</pubDate>
        <dc:creator>Michael Ellerman &lt;mpe@ellerman.id.au&gt;</dc:creator>
    </item>
<item>
        <title>05dce4ba - macintosh: via-pmu-led: requires ATA to be set</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/macintosh/Kconfig#05dce4ba</link>
        <description>macintosh: via-pmu-led: requires ATA to be setLEDS_TRIGGER_DISK depends on ATA, so selecting LEDS_TRIGGER_DISKwhen ATA is not set/enabled causes a Kconfig warning:WARNING: unmet direct dependencies detected for LEDS_TRIGGER_DISK  Depends on [n]: NEW_LEDS [=y] &amp;&amp; LEDS_TRIGGERS [=y] &amp;&amp; ATA [=n]  Selected by [y]:  - ADB_PMU_LED_DISK [=y] &amp;&amp; MACINTOSH_DRIVERS [=y] &amp;&amp; ADB_PMU_LED [=y] &amp;&amp; LEDS_CLASS [=y]Fix this by making ADB_PMU_LED_DISK depend on ATA.Seen on both PPC32 and PPC64.Fixes: 0e865a80c135 (&quot;macintosh: Remove dependency on IDE_GD_ATA if ADB_PMU_LED_DISK is selected&quot;)Signed-off-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Link: https://msgid.link/20230223014241.20878-1-rdunlap@infradead.org

            List of files:
            /linux-6.15/drivers/macintosh/Kconfig</description>
        <pubDate>Thu, 23 Feb 2023 01:42:41 +0000</pubDate>
        <dc:creator>Randy Dunlap &lt;rdunlap@infradead.org&gt;</dc:creator>
    </item>
<item>
        <title>9a9c5ff5 - macintosh: via-pmu and via-cuda need RTC_LIB</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/macintosh/Kconfig#9a9c5ff5</link>
        <description>macintosh: via-pmu and via-cuda need RTC_LIBFix build when RTC_LIB is not set/enabled.Eliminates these build errors:m68k-linux-ld: drivers/macintosh/via-pmu.o: in function `pmu_set_rtc_time&apos;:drivers/macintosh/via-pmu.c:1769: undefined reference to `rtc_tm_to_time64&apos;m68k-linux-ld: drivers/macintosh/via-cuda.o: in function `cuda_set_rtc_time&apos;:drivers/macintosh/via-cuda.c:797: undefined reference to `rtc_tm_to_time64&apos;Fixes: 0792a2c8e0bb (&quot;macintosh: Use common code to access RTC&quot;)Reported-by: kernel test robot &lt;lkp@intel.com&gt;Suggested-by: Christophe Leroy &lt;christophe.leroy@csgroup.eu&gt;Signed-off-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Acked-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Link: https://lore.kernel.org/r/20220410161035.592-1-rdunlap@infradead.org

            List of files:
            /linux-6.15/drivers/macintosh/Kconfig</description>
        <pubDate>Sun, 10 Apr 2022 16:10:35 +0000</pubDate>
        <dc:creator>Randy Dunlap &lt;rdunlap@infradead.org&gt;</dc:creator>
    </item>
<item>
        <title>86ce436e - macintosh/via-pmu: Fix build failure when CONFIG_INPUT is disabled</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/macintosh/Kconfig#86ce436e</link>
        <description>macintosh/via-pmu: Fix build failure when CONFIG_INPUT is disableddrivers/macintosh/via-pmu-event.o: In function `via_pmu_event&apos;:via-pmu-event.c:(.text+0x44): undefined reference to `input_event&apos;via-pmu-event.c:(.text+0x68): undefined reference to `input_event&apos;via-pmu-event.c:(.text+0x94): undefined reference to `input_event&apos;via-pmu-event.c:(.text+0xb8): undefined reference to `input_event&apos;drivers/macintosh/via-pmu-event.o: In function `via_pmu_event_init&apos;:via-pmu-event.c:(.init.text+0x20): undefined reference to `input_allocate_device&apos;via-pmu-event.c:(.init.text+0xc4): undefined reference to `input_register_device&apos;via-pmu-event.c:(.init.text+0xd4): undefined reference to `input_free_device&apos;make[1]: *** [Makefile:1155: vmlinux] Error 1make: *** [Makefile:350: __build_one_by_one] Error 2Don&apos;t call into the input subsystem unless CONFIG_INPUT is built-in.Reported-by: kernel test robot &lt;lkp@intel.com&gt;Signed-off-by: Finn Thain &lt;fthain@linux-m68k.org&gt;Tested-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Reviewed-by: Christophe Leroy &lt;christophe.leroy@csgroup.eu&gt;Acked-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Link: https://lore.kernel.org/r/5edbe76ce68227f71e09af4614cc4c1bd61c7ec8.1649326292.git.fthain@linux-m68k.org

            List of files:
            /linux-6.15/drivers/macintosh/Kconfig</description>
        <pubDate>Thu, 07 Apr 2022 10:11:32 +0000</pubDate>
        <dc:creator>Finn Thain &lt;fthain@linux-m68k.org&gt;</dc:creator>
    </item>
<item>
        <title>a7f7f624 - treewide: replace &apos;---help---&apos; in Kconfig files with &apos;help&apos;</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/macintosh/Kconfig#a7f7f624</link>
        <description>treewide: replace &apos;---help---&apos; in Kconfig files with &apos;help&apos;Since commit 84af7a6194e4 (&quot;checkpatch: kconfig: prefer &apos;help&apos; over&apos;---help---&apos;&quot;), the number of &apos;---help---&apos; has been graduallydecreasing, but there are still more than 2400 instances.This commit finishes the conversion. While I touched the lines,I also fixed the indentation.There are a variety of indentation styles found.  a) 4 spaces + &apos;---help---&apos;  b) 7 spaces + &apos;---help---&apos;  c) 8 spaces + &apos;---help---&apos;  d) 1 space + 1 tab + &apos;---help---&apos;  e) 1 tab + &apos;---help---&apos;    (correct indentation)  f) 1 tab + 1 space + &apos;---help---&apos;  g) 1 tab + 2 spaces + &apos;---help---&apos;In order to convert all of them to 1 tab + &apos;help&apos;, I ran thefollowing commend:  $ find . -name &apos;Kconfig*&apos; | xargs sed -i &apos;s/^[[:space:]]*---help---/\thelp/&apos;Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/macintosh/Kconfig</description>
        <pubDate>Sat, 13 Jun 2020 16:50:22 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>0c444d98 - macintosh/ams-input: switch to using input device polling mode</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/macintosh/Kconfig#0c444d98</link>
        <description>macintosh/ams-input: switch to using input device polling modeNow that instances of input_dev support polling mode natively,we no longer need to create input_polled_dev instance.Signed-off-by: Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Link: https://lore.kernel.org/r/20191002214854.GA114387@dtor-ws

            List of files:
            /linux-6.15/drivers/macintosh/Kconfig</description>
        <pubDate>Wed, 02 Oct 2019 21:48:54 +0000</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>25dd118f - macintosh: Fix Kconfig indentation</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/macintosh/Kconfig#25dd118f</link>
        <description>macintosh: Fix Kconfig indentationAdjust indentation from spaces to tab (+optional two spaces) as incoding style with command like:	$ sed -e &apos;s/^        /\t/&apos; -i */KconfigSigned-off-by: Krzysztof Kozlowski &lt;krzk@kernel.org&gt;Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;Link: https://lore.kernel.org/r/20191120134115.14918-1-krzk@kernel.org

            List of files:
            /linux-6.15/drivers/macintosh/Kconfig</description>
        <pubDate>Wed, 20 Nov 2019 13:41:15 +0000</pubDate>
        <dc:creator>Krzysztof Kozlowski &lt;krzk@kernel.org&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/macintosh/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/macintosh/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>ebd72227 - macintosh/via-pmu: Replace via-pmu68k driver with via-pmu driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/macintosh/Kconfig#ebd72227</link>
        <description>macintosh/via-pmu: Replace via-pmu68k driver with via-pmu driverNow that the PowerMac via-pmu driver supports m68k PowerBooks,switch over to that driver and remove the via-pmu68k driver.Tested-by: Stan Johnson &lt;userm57@yahoo.com&gt;Signed-off-by: Finn Thain &lt;fthain@telegraphics.com.au&gt;Reviewed-by: Geert Uytterhoeven &lt;geert@linux-m68k.org&gt;Acked-by: Geert Uytterhoeven &lt;geert@linux-m68k.org&gt;Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;

            List of files:
            /linux-6.15/drivers/macintosh/Kconfig</description>
        <pubDate>Mon, 02 Jul 2018 08:21:19 +0000</pubDate>
        <dc:creator>Finn Thain &lt;fthain@telegraphics.com.au&gt;</dc:creator>
    </item>
<item>
        <title>c2f028b6 - macintosh/via-pmu: Explicitly specify CONFIG_PPC_PMAC dependencies</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/macintosh/Kconfig#c2f028b6</link>
        <description>macintosh/via-pmu: Explicitly specify CONFIG_PPC_PMAC dependenciesAt present, CONFIG_ADB_PMU depends on CONFIG_PPC_PMAC. When this getsrelaxed to CONFIG_PPC_PMAC || CONFIG_MAC, those Kconfig symbols withimplicit deps on PPC_PMAC will need explicit deps. Add them now.No functional change.Tested-by: Stan Johnson &lt;userm57@yahoo.com&gt;Signed-off-by: Finn Thain &lt;fthain@telegraphics.com.au&gt;Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;

            List of files:
            /linux-6.15/drivers/macintosh/Kconfig</description>
        <pubDate>Mon, 02 Jul 2018 08:21:19 +0000</pubDate>
        <dc:creator>Finn Thain &lt;fthain@telegraphics.com.au&gt;</dc:creator>
    </item>
<item>
        <title>c16a85a5 - macintosh/via-pmu: Add support for m68k PowerBooks</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/macintosh/Kconfig#c16a85a5</link>
        <description>macintosh/via-pmu: Add support for m68k PowerBooksPut #ifdefs around the Open Firmware, xmon, interrupt dispatch,battery and suspend code. Add the necessary interrupt handling tosupport m68k PowerBooks.The pmu_kind value is available to userspace using thePMU_IOC_GET_MODEL ioctl. It is not clear yet what hardware classesare be needed to describe m68k PowerBook models, so pmu_kind is giventhe provisional value PMU_UNKNOWN.To find out about the hardware, user programs can use /proc/bootinfoor /proc/hardware, or send the PMU_GET_VERSION command using /dev/adb.Tested-by: Stan Johnson &lt;userm57@yahoo.com&gt;Signed-off-by: Finn Thain &lt;fthain@telegraphics.com.au&gt;Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;

            List of files:
            /linux-6.15/drivers/macintosh/Kconfig</description>
        <pubDate>Mon, 02 Jul 2018 08:21:19 +0000</pubDate>
        <dc:creator>Finn Thain &lt;fthain@telegraphics.com.au&gt;</dc:creator>
    </item>
<item>
        <title>f74faec6 - m68k/mac: Replace via-maciisi driver with via-cuda driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/macintosh/Kconfig#f74faec6</link>
        <description>m68k/mac: Replace via-maciisi driver with via-cuda driverChange the device probe test in the via-cuda.c driver so it will load onEgret-based machines too. Remove the now redundant via-maciisi.c driver.Tested-by: Stan Johnson &lt;userm57@yahoo.com&gt;Signed-off-by: Finn Thain &lt;fthain@telegraphics.com.au&gt;Acked-by: Geert Uytterhoeven &lt;geert@linux-m68k.org&gt;Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;

            List of files:
            /linux-6.15/drivers/macintosh/Kconfig</description>
        <pubDate>Sun, 01 Jan 2017 00:56:26 +0000</pubDate>
        <dc:creator>Finn Thain &lt;fthain@telegraphics.com.au&gt;</dc:creator>
    </item>
<item>
        <title>0e865a80 - macintosh: Remove dependency on IDE_GD_ATA if ADB_PMU_LED_DISK is selected</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/macintosh/Kconfig#0e865a80</link>
        <description>macintosh: Remove dependency on IDE_GD_ATA if ADB_PMU_LED_DISK is selectedWe can use the front led of powerbooks/ibooks to visualize disk activitywithout the deprecated IDE_GD_ATA.Signed-off-by: Elimar Riesebieter &lt;riesebie@lxtec.de&gt;Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;

            List of files:
            /linux-6.15/drivers/macintosh/Kconfig</description>
        <pubDate>Sun, 18 Sep 2016 11:08:45 +0000</pubDate>
        <dc:creator>Elimar Riesebieter &lt;riesebie@lxtec.de&gt;</dc:creator>
    </item>
<item>
        <title>83e2c70e - powerpc: use the new LED disk activity trigger</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/macintosh/Kconfig#83e2c70e</link>
        <description>powerpc: use the new LED disk activity trigger- dts: rename &apos;ide-disk&apos; to &apos;disk-activity&apos;- defconfig: rename &apos;ADB_PMU_LED_IDE&apos; to &apos;ADB_PMU_LED_DISK&apos;Cc: Joseph Jezak &lt;josejx@gentoo.org&gt;Cc: J&#246;rg Sommer &lt;joerg@alea.gnuu.de&gt;Signed-off-by: Stephan Linz &lt;linz@li-pro.net&gt;Signed-off-by: Jacek Anaszewski &lt;j.anaszewski@samsung.com&gt;

            List of files:
            /linux-6.15/drivers/macintosh/Kconfig</description>
        <pubDate>Fri, 10 Jun 2016 05:59:58 +0000</pubDate>
        <dc:creator>Stephan Linz &lt;linz@li-pro.net&gt;</dc:creator>
    </item>
<item>
        <title>f27b86dc - drivers/macintosh: adb: fix misleading Kconfig help text</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/macintosh/Kconfig#f27b86dc</link>
        <description>drivers/macintosh: adb: fix misleading Kconfig help textCONFIG_INPUT_KEYBDEV does not exist and no additional keyboard-specificoptions are needed to get the keyboard working.Signed-off-by: Aaro Koskinen &lt;aaro.koskinen@iki.fi&gt;Signed-off-by: Michael Ellerman &lt;mpe@ellerman.id.au&gt;

            List of files:
            /linux-6.15/drivers/macintosh/Kconfig</description>
        <pubDate>Thu, 01 Oct 2015 19:41:40 +0000</pubDate>
        <dc:creator>Aaro Koskinen &lt;aaro.koskinen@iki.fi&gt;</dc:creator>
    </item>
<item>
        <title>b074cf80 - macintosh: therm_pm72: delete deprecated driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/macintosh/Kconfig#b074cf80</link>
        <description>macintosh: therm_pm72: delete deprecated driverThe new driver is around for more than 2 years now, so the old one cango. Getting rid of it helps the removal of the legacy .attach_adaptercallback of the I2C subsystem.Signed-off-by: Wolfram Sang &lt;wsa@the-dreams.de&gt;Acked-by: Benjamin Herrenschmidt &lt;benh@kernel.crashing.org&gt;

            List of files:
            /linux-6.15/drivers/macintosh/Kconfig</description>
        <pubDate>Wed, 05 Nov 2014 22:44:11 +0000</pubDate>
        <dc:creator>Wolfram Sang &lt;wsa@the-dreams.de&gt;</dc:creator>
    </item>
<item>
        <title>6cf30b35 - m68k/mac: Mark Mac IIsi ADB driver BROKEN</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/macintosh/Kconfig#6cf30b35</link>
        <description>m68k/mac: Mark Mac IIsi ADB driver BROKENAs reported by Finn Thain, the Mac IIsi ADB driver should be disabledbecause it will crash.Signed-off-by: Geert Uytterhoeven &lt;geert@linux-m68k.org&gt;

            List of files:
            /linux-6.15/drivers/macintosh/Kconfig</description>
        <pubDate>Fri, 24 May 2013 12:10:51 +0000</pubDate>
        <dc:creator>Geert Uytterhoeven &lt;geert@linux-m68k.org&gt;</dc:creator>
    </item>
<item>
        <title>de00b30d - powerpc/pmu: Fix ADB_PMU_LED_IDE dependencies</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/macintosh/Kconfig#de00b30d</link>
        <description>powerpc/pmu: Fix ADB_PMU_LED_IDE dependenciesfor quite some time the following is printed (twice) after doing&quot;make oldconfig&quot;:[...]scripts/kconfig/conf --oldconfig Kconfigwarning: (ADB_PMU_LED_IDE) selects LEDS_TRIGGER_IDE_DISK which has unmet direct dependencies (NEW_LEDS &amp;&amp; IDE_GD_ATA &amp;&amp; LEDS_TRIGGERS)warning: (ADB_PMU_LED_IDE) selects LEDS_TRIGGER_IDE_DISK which has unmet direct dependencies (NEW_LEDS &amp;&amp; IDE_GD_ATA &amp;&amp; LEDS_TRIGGERS)The following patch causes ADB_PMU_LED to depend on IDE_GD_ATA, so thatthe options above are only available when IDE_GD_ATA is actually selectedand thus eliminates the warning.Signed-off-by: Christian Kujau &lt;lists@nerdbynature.de&gt;Signed-off-by: Benjamin Herrenschmidt &lt;benh@kernel.crashing.org&gt;

            List of files:
            /linux-6.15/drivers/macintosh/Kconfig</description>
        <pubDate>Wed, 30 Oct 2013 04:25:43 +0000</pubDate>
        <dc:creator>Christian Kujau &lt;lists@nerdbynature.de&gt;</dc:creator>
    </item>
<item>
        <title>80ec2135 - drivers/macintosh: remove depends on CONFIG_EXPERIMENTAL</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/macintosh/Kconfig#80ec2135</link>
        <description>drivers/macintosh: remove depends on CONFIG_EXPERIMENTALThe CONFIG_EXPERIMENTAL config item has not carried much meaning for awhile now and is almost always enabled by default. As agreed during theLinux kernel summit, remove it from any &quot;depends on&quot; lines in Kconfigs.CC: Benjamin Herrenschmidt &lt;benh@kernel.crashing.org&gt;Signed-off-by: Kees Cook &lt;keescook@chromium.org&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/macintosh/Kconfig</description>
        <pubDate>Thu, 17 Jan 2013 02:53:42 +0000</pubDate>
        <dc:creator>Kees Cook &lt;keescook@chromium.org&gt;</dc:creator>
    </item>
</channel>
</rss>
