<?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 Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>8daaed76 - sh: Remove superhyway bus support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/sh/Makefile#8daaed76</link>
        <description>sh: Remove superhyway bus supportThe superhyway bus driver was only referenced on SH4-202, which is now gone,so remove it all as well.I could find no trace of anything ever calling superhyway_register_driver(),not in the git history but also not on the web, so I assume this has neverserved any purpose on mainline kernels.Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Reviewed-by: John Paul Adrian Glaubitz &lt;glaubitz@physik.fu-berlin.de&gt;Link: https://lore.kernel.org/r/20230914155523.3839811-3-arnd@kernel.orgSigned-off-by: John Paul Adrian Glaubitz &lt;glaubitz@physik.fu-berlin.de&gt;

            List of files:
            /linux-6.15/drivers/sh/Makefile</description>
        <pubDate>Thu, 14 Sep 2023 15:55:22 +0000</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>b2441318 - License cleanup: add SPDX GPL-2.0 license identifier to files with no license</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/sh/Makefile#b2441318</link>
        <description>License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseMany source files in the tree are missing licensing information, whichmakes it harder for compliance tools to determine the correct license.By default all files without license information are under the defaultlicense of the kernel, which is GPL version 2.Update the files which contain no license information with the &apos;GPL-2.0&apos;SPDX license identifier.  The SPDX identifier is a legally bindingshorthand, which can be used instead of the full boiler plate text.This patch is based on work done by Thomas Gleixner and Kate Stewart andPhilippe Ombredanne.How this work was done:Patches were generated and checked against linux-4.14-rc6 for a subset ofthe use cases: - file had no licensing information it it. - file was a */uapi/* one with no licensing information in it, - file was a */uapi/* one with existing licensing information,Further patches will be generated in subsequent months to fix up caseswhere non-standard license headers were used, and references to licensehad to be inferred by heuristics based on keywords.The analysis to determine which SPDX License Identifier to be applied toa file was done in a spreadsheet of side by side results from of theoutput of two independent scanners (ScanCode &amp; Windriver) producing SPDXtag:value files created by Philippe Ombredanne.  Philippe prepared thebase worksheet, and did an initial spot review of a few 1000 files.The 4.13 kernel was the starting point of the analysis with 60,537 filesassessed.  Kate Stewart did a file by file comparison of the scannerresults in the spreadsheet to determine which SPDX license identifier(s)to be applied to the file. She confirmed any determination that was notimmediately clear with lawyers working with the Linux Foundation.Criteria used to select files for SPDX license identifier tagging was: - Files considered eligible had to be source code files. - Make and config files were included as candidates if they contained &gt;5   lines of source - File already had some variant of a license header in it (even if &lt;5   lines).All documentation files were explicitly excluded.The following heuristics were used to determine which SPDX licenseidentifiers to apply. - when both scanners couldn&apos;t find any license traces, file was   considered to have no license information in it, and the top level   COPYING file license applied.   For non */uapi/* files that summary was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0                                              11139   and resulted in the first patch in this series.   If that file was a */uapi/* path one, it was &quot;GPL-2.0 WITH   Linux-syscall-note&quot; otherwise it was &quot;GPL-2.0&quot;.  Results of that was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0 WITH Linux-syscall-note                        930   and resulted in the second patch in this series. - if a file had some form of licensing information in it, and was one   of the */uapi/* ones, it was denoted with the Linux-syscall-note if   any GPL family license was found in the file or had no licensing in   it (per prior point).  Results summary:   SPDX license identifier                            # files   ---------------------------------------------------|------   GPL-2.0 WITH Linux-syscall-note                       270   GPL-2.0+ WITH Linux-syscall-note                      169   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause)    21   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause)    17   LGPL-2.1+ WITH Linux-syscall-note                      15   GPL-1.0+ WITH Linux-syscall-note                       14   ((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause)    5   LGPL-2.0+ WITH Linux-syscall-note                       4   LGPL-2.1 WITH Linux-syscall-note                        3   ((GPL-2.0 WITH Linux-syscall-note) OR MIT)              3   ((GPL-2.0 WITH Linux-syscall-note) AND MIT)             1   and that resulted in the third patch in this series. - when the two scanners agreed on the detected license(s), that became   the concluded license(s). - when there was disagreement between the two scanners (one detected a   license but the other didn&apos;t, or they both detected different   licenses) a manual inspection of the file occurred. - In most cases a manual inspection of the information in the file   resulted in a clear resolution of the license that should apply (and   which scanner probably needed to revisit its heuristics). - When it was not immediately clear, the license identifier was   confirmed with lawyers working with the Linux Foundation. - If there was any question as to the appropriate license identifier,   the file was flagged for further research and to be revisited later   in time.In total, over 70 hours of logged manual review was done on thespreadsheet to determine the SPDX license identifiers to apply to thesource files by Kate, Philippe, Thomas and, in some cases, confirmationby lawyers working with the Linux Foundation.Kate also obtained a third independent scan of the 4.13 code base fromFOSSology, and compared selected files where the other two scannersdisagreed against that SPDX file, to see if there was new insights.  TheWindriver scanner is based on an older version of FOSSology in part, sothey are related.Thomas did random spot checks in about 500 files from the spreadsheetsfor the uapi headers and agreed with SPDX license identifier in thefiles he inspected. For the non-uapi files Thomas did random spot checksin about 15000 files.In initial set of patches against 4.14-rc6, 3 files were found to havecopy/paste license identifier errors, and have been fixed to reflect thecorrect identifier.Additionally Philippe spent 10 hours this week doing a detailed manualinspection and review of the 12,461 patched files from the initial patchversion early this week with: - a full scancode scan run, collecting the matched texts, detected   license ids and scores - reviewing anything where there was a license detected (about 500+   files) to ensure that the applied SPDX license was correct - reviewing anything where there was no detection but the patch license   was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied   SPDX license was correctThis produced a worksheet with 20 files needing minor correction.  Thisworksheet was then exported into 3 different .csv files for thedifferent types of files to be modified.These .csv files were then reviewed by Greg.  Thomas wrote a script toparse the csv files and add the proper SPDX tag to the file, in theformat that the file expected.  This script was further refined by Gregbased on the output to detect more types of files automatically and todistinguish between header and source .c files (which need differentcomment types.)  Finally Greg ran the script using the .csv files togenerate the patches.Reviewed-by: Kate Stewart &lt;kstewart@linuxfoundation.org&gt;Reviewed-by: Philippe Ombredanne &lt;pombredanne@nexb.com&gt;Reviewed-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/sh/Makefile</description>
        <pubDate>Wed, 01 Nov 2017 14:07:57 +0000</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>049d2804 - sh: intc: Confine SH_INTC to platforms that need it</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/sh/Makefile#049d2804</link>
        <description>sh: intc: Confine SH_INTC to platforms that need itCurrently the sh-intc driver is compiled on all SuperH andnon-multiplatform SH-Mobile platforms, while it&apos;s only used on a limitednumber of platforms:  - SuperH: SH2(A), SH3(A), SH4(A)(L) (all but SH5)  - ARM: sh7372, sh73a0Drop the &quot;default y&quot; on SH_INTC, make all CPU platforms that use itselect it, and protect all sub-options by &quot;if SH_INTC&quot; to fix this.Signed-off-by: Geert Uytterhoeven &lt;geert+renesas@glider.be&gt;Acked-by: Magnus Damm &lt;damm+renesas@opensource.se&gt;Signed-off-by: Simon Horman &lt;horms+renesas@verge.net.au&gt;

            List of files:
            /linux-6.15/drivers/sh/Makefile</description>
        <pubDate>Wed, 20 Aug 2014 13:39:22 +0000</pubDate>
        <dc:creator>Geert Uytterhoeven &lt;geert+renesas@glider.be&gt;</dc:creator>
    </item>
<item>
        <title>3c90c55d - drivers: sh: compile drivers/sh/pm_runtime.c if ARCH_SHMOBILE_MULTI</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/sh/Makefile#3c90c55d</link>
        <description>drivers: sh: compile drivers/sh/pm_runtime.c if ARCH_SHMOBILE_MULTIIf the kernel is built to support multi-ARM configuration with shmobilesupport built in, then drivers/sh is not built. This contains the PMruntime code in drivers/sh/pm_runtime.c, which implicitly enables themodule clocks for all devices, and thus is quite essential.Without this, the state of clocks depends on implicit reset state, or onthe bootloader.If ARCH_SHMOBILE_MULTI then build the drivers/sh directory, but ensure thatbits that may conflict (drivers/sh/clk if the common clock framework isenabled) or are not used (drivers/sh/intc), are not built.Also, only enable the PM runtime code when actually running on a shmobileSoCs that needs it.ARCH_SHMOBILE_MULTI was added a while ago by commitefacfce5f8a523457e9419a25d52fe39db00b26a (&quot;ARM: shmobile: IntroduceARCH_SHMOBILE_MULTI&quot;), but drivers/sh was compiled for bothARCH_SHMOBILE_LEGACY and ARCH_SHMOBILE_MULTI until commitbf98c1eac1d4a6bcf00532e4fa41d8126cd6c187 (&quot;ARM: Rename ARCH_SHMOBILE toARCH_SHMOBILE_LEGACY&quot;).Inspired by a patch from Ben Dooks &lt;ben.dooks@codethink.co.uk&gt;.Signed-off-by: Geert Uytterhoeven &lt;geert+renesas@glider.be&gt;Signed-off-by: Simon Horman &lt;horms+renesas@verge.net.au&gt;

            List of files:
            /linux-6.15/drivers/sh/Makefile</description>
        <pubDate>Tue, 06 May 2014 21:26:19 +0000</pubDate>
        <dc:creator>Geert Uytterhoeven &lt;geert+renesas@glider.be&gt;</dc:creator>
    </item>
<item>
        <title>6e54d8d2 - sh-pfc: Move driver from drivers/sh/ to drivers/pinctrl/</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/sh/Makefile#6e54d8d2</link>
        <description>sh-pfc: Move driver from drivers/sh/ to drivers/pinctrl/Signed-off-by: Laurent Pinchart &lt;laurent.pinchart+renesas@ideasonboard.com&gt;Acked-by: Paul Mundt &lt;lethal@linux-sh.org&gt;Acked-by: Linus Walleij &lt;linus.walleij@linaro.org&gt;Signed-off-by: Simon Horman &lt;horms+renesas@verge.net.au&gt;

            List of files:
            /linux-6.15/drivers/sh/Makefile</description>
        <pubDate>Sat, 15 Dec 2012 22:51:19 +0000</pubDate>
        <dc:creator>Laurent Pinchart &lt;laurent.pinchart+renesas@ideasonboard.com&gt;</dc:creator>
    </item>
<item>
        <title>afae021a - sh: pfc: Shuffle PFC support core.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/sh/Makefile#afae021a</link>
        <description>sh: pfc: Shuffle PFC support core.This follows the intc/clk changes and shuffles the PFC support code underits own directory. This will facilitate better code sharing, and allow usto trim down the exported interface by quite a margin.Signed-off-by: Paul Mundt &lt;lethal@linux-sh.org&gt;

            List of files:
            /linux-6.15/drivers/sh/Makefile</description>
        <pubDate>Tue, 10 Jul 2012 02:49:30 +0000</pubDate>
        <dc:creator>Paul Mundt &lt;lethal@linux-sh.org&gt;</dc:creator>
    </item>
<item>
        <title>b16b2a26 - sh: pfc: Make gpio chip support optional where possible.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/sh/Makefile#b16b2a26</link>
        <description>sh: pfc: Make gpio chip support optional where possible.This implements some Kconfig knobs for ensuring that the PFC gpio chipcan be disabled or built as a module in the cases where it&apos;s optional, orforcibly enabled in cases where it&apos;s not.Signed-off-by: Paul Mundt &lt;lethal@linux-sh.org&gt;

            List of files:
            /linux-6.15/drivers/sh/Makefile</description>
        <pubDate>Wed, 20 Jun 2012 09:17:56 +0000</pubDate>
        <dc:creator>Paul Mundt &lt;lethal@linux-sh.org&gt;</dc:creator>
    </item>
<item>
        <title>b3c185a7 - sh: pfc: Split out gpio chip support.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/sh/Makefile#b3c185a7</link>
        <description>sh: pfc: Split out gpio chip support.This implements a bit of rework for the PFC code, making the core itselfslightly more pluggable and moving out the gpio chip handling completely.The API is preserved in such a way that platforms that depend on it forearly configuration are still able to do so, while making it possible tomigrate to alternate interfaces going forward.This is the first step of chainsawing necessary to support the pinctrlAPI, with the eventual goal being able to decouple pin function statefrom the gpio API while retaining gpio chip tie-in for gpio pin functionsonly, relying on the pinctrl/pinmux API for non-gpio function demux.Signed-off-by: Paul Mundt &lt;lethal@linux-sh.org&gt;

            List of files:
            /linux-6.15/drivers/sh/Makefile</description>
        <pubDate>Wed, 20 Jun 2012 08:29:04 +0000</pubDate>
        <dc:creator>Paul Mundt &lt;lethal@linux-sh.org&gt;</dc:creator>
    </item>
<item>
        <title>d3442b2b - sh: also without PM_RUNTIME pm_runtime.o must be built</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/sh/Makefile#d3442b2b</link>
        <description>sh: also without PM_RUNTIME pm_runtime.o must be builtWhen CONFIG_PM_RUNTIME is off, drivers/sh/pm_runtime.o still has to bebuilt on sh platforms, because then it provides means to staticallyswitch on device PM clocks.Signed-off-by: Guennadi Liakhovetski &lt;g.liakhovetski@gmx.de&gt;Signed-off-by: Paul Mundt &lt;lethal@linux-sh.org&gt;

            List of files:
            /linux-6.15/drivers/sh/Makefile</description>
        <pubDate>Tue, 10 Jan 2012 15:04:11 +0000</pubDate>
        <dc:creator>Guennadi Liakhovetski &lt;g.liakhovetski@gmx.de&gt;</dc:creator>
    </item>
<item>
        <title>62d3ba8b - sh: Kill off remaining private runtime PM bits.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/sh/Makefile#62d3ba8b</link>
        <description>sh: Kill off remaining private runtime PM bits.This kills of the now unused runtime PM stub in favour of the genericone.Signed-off-by: Paul Mundt &lt;lethal@linux-sh.org&gt;

            List of files:
            /linux-6.15/drivers/sh/Makefile</description>
        <pubDate>Fri, 18 Nov 2011 07:05:52 +0000</pubDate>
        <dc:creator>Paul Mundt &lt;lethal@linux-sh.org&gt;</dc:creator>
    </item>
<item>
        <title>7fa4632d - sh: sh7723: use runtime PM implementation, common with arm/mach-shmobile</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/sh/Makefile#7fa4632d</link>
        <description>sh: sh7723: use runtime PM implementation, common with arm/mach-shmobileSwitch sh7723 to a runtime PM implementation, common with ARM-basedsh-mobile platforms.Signed-off-by: Guennadi Liakhovetski &lt;g.liakhovetski@gmx.de&gt;Signed-off-by: Paul Mundt &lt;lethal@linux-sh.org&gt;

            List of files:
            /linux-6.15/drivers/sh/Makefile</description>
        <pubDate>Thu, 17 Nov 2011 13:55:56 +0000</pubDate>
        <dc:creator>Guennadi Liakhovetski &lt;g.liakhovetski@gmx.de&gt;</dc:creator>
    </item>
<item>
        <title>6a06d5bf - sh: sh7722: use runtime PM implementation, common with arm/mach-shmobile</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/sh/Makefile#6a06d5bf</link>
        <description>sh: sh7722: use runtime PM implementation, common with arm/mach-shmobileSwitch sh7722 to a runtime PM implementation, common with ARM-basedsh-mobile platforms.Signed-off-by: Guennadi Liakhovetski &lt;g.liakhovetski@gmx.de&gt;Signed-off-by: Paul Mundt &lt;lethal@linux-sh.org&gt;

            List of files:
            /linux-6.15/drivers/sh/Makefile</description>
        <pubDate>Thu, 17 Nov 2011 13:55:52 +0000</pubDate>
        <dc:creator>Guennadi Liakhovetski &lt;g.liakhovetski@gmx.de&gt;</dc:creator>
    </item>
<item>
        <title>8cc88a55 - sh: sh7724: use runtime PM implementation, common with arm/mach-shmobile</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/sh/Makefile#8cc88a55</link>
        <description>sh: sh7724: use runtime PM implementation, common with arm/mach-shmobileSwitch sh7724 to a runtime PM implementation, common with ARM-basedsh-mobile platforms.Signed-off-by: Guennadi Liakhovetski &lt;g.liakhovetski@gmx.de&gt;Signed-off-by: Paul Mundt &lt;lethal@linux-sh.org&gt;

            List of files:
            /linux-6.15/drivers/sh/Makefile</description>
        <pubDate>Thu, 17 Nov 2011 13:55:47 +0000</pubDate>
        <dc:creator>Guennadi Liakhovetski &lt;g.liakhovetski@gmx.de&gt;</dc:creator>
    </item>
<item>
        <title>750a7eee - drivers: sh: Generalize runtime PM platform stub.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/sh/Makefile#750a7eee</link>
        <description>drivers: sh: Generalize runtime PM platform stub.The runtime PM platform support stub in use by ARM-based SH/R-Mobileplatforms contains nothing that&apos;s specifically ARM-related and instead ofwholly generic to anything using the clock framework.The recent runtime PM changes interact rather badly with the lazydisabling of clocks late in the boot process through the clock framework,leading to situations where the runtime suspend/resume paths are enteredwithout a clock being actively driven due to having been lazily gatedoff.In order to correct this we can trivially tie in the aforementioned stubas a general fallback for all SH platforms that don&apos;t presently havetheir own runtime PM implementations (the corner case being SH-basedSH-Mobile platforms, which have their own stub through the hwblk API --which in turn has bitrotted and will be subsequently adapted to use thesame stub as everyone else), regardless of whether the platforms chooseto define power domains of their own or not.This fixes up regressions for clock framework users who also build inruntime PM support without any specific power domains of their own, whichwas previously causing the serial console to be lost when warring withlazy clock disabling.Signed-off-by: Paul Mundt &lt;lethal@linux-sh.org&gt;

            List of files:
            /linux-6.15/drivers/sh/Makefile</description>
        <pubDate>Fri, 11 Nov 2011 06:41:50 +0000</pubDate>
        <dc:creator>Paul Mundt &lt;lethal@linux-sh.org&gt;</dc:creator>
    </item>
<item>
        <title>de9186c2 - sh: clkfwk: Shuffle around to match the intc split up.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/sh/Makefile#de9186c2</link>
        <description>sh: clkfwk: Shuffle around to match the intc split up.This shuffles the clock framework code around to a drivers/sh/clk subdir,to follow the intc split up. This will make it easier to subsequentlybreak things out as well as plug in different helpers for non-CPG users.Signed-off-by: Paul Mundt &lt;lethal@linux-sh.org&gt;

            List of files:
            /linux-6.15/drivers/sh/Makefile</description>
        <pubDate>Mon, 18 Oct 2010 12:32:58 +0000</pubDate>
        <dc:creator>Paul Mundt &lt;lethal@linux-sh.org&gt;</dc:creator>
    </item>
<item>
        <title>2be6bb0c - sh: intc: Split up the INTC code.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/sh/Makefile#2be6bb0c</link>
        <description>sh: intc: Split up the INTC code.This splits up the sh intc core in to something more vaguely resemblinga subsystem. Most of the functionality was alread fairly wellcompartmentalized, and there were only a handful of interdependenciesthat needed to be resolved in the process.This also serves as future-proofing for the genirq and sparseirq rework,which will make some of the split out functionality wholly generic,allowing things to be killed off in place with minimal migration pain.Signed-off-by: Paul Mundt &lt;lethal@linux-sh.org&gt;

            List of files:
            /linux-6.15/drivers/sh/Makefile</description>
        <pubDate>Tue, 05 Oct 2010 13:10:30 +0000</pubDate>
        <dc:creator>Paul Mundt &lt;lethal@linux-sh.org&gt;</dc:creator>
    </item>
<item>
        <title>e47bb515 - ARM: mach-shmobile: Use shared clock framework</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/sh/Makefile#e47bb515</link>
        <description>ARM: mach-shmobile: Use shared clock frameworkTeach SH-Mobile ARM how to make use of the shared SH clockframework. This commit is one atomic switch that dumps thelocal hackery and instead links in the shared clock frameworkcode in drivers/sh. A few local functions are kept in clock.c.Signed-off-by: Magnus Damm &lt;damm@opensource.se&gt;Signed-off-by: Paul Mundt &lt;lethal@linux-sh.org&gt;

            List of files:
            /linux-6.15/drivers/sh/Makefile</description>
        <pubDate>Wed, 12 May 2010 14:21:24 +0000</pubDate>
        <dc:creator>Magnus Damm &lt;damm@opensource.se&gt;</dc:creator>
    </item>
<item>
        <title>fa676ca3 - sh: move sh clock-cpg.c contents to drivers/sh/clk-cpg.c</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/sh/Makefile#fa676ca3</link>
        <description>sh: move sh clock-cpg.c contents to drivers/sh/clk-cpg.cMove the CPG helpers to drivers/sh/clk-cpg.c V2.This to allow SH-Mobile ARM to share the code withSH. All functions except the legacy CPG stuff is moved.Signed-off-by: Magnus Damm &lt;damm@opensource.se&gt;Signed-off-by: Paul Mundt &lt;lethal@linux-sh.org&gt;

            List of files:
            /linux-6.15/drivers/sh/Makefile</description>
        <pubDate>Tue, 11 May 2010 13:29:34 +0000</pubDate>
        <dc:creator>Magnus Damm &lt;damm@opensource.se&gt;</dc:creator>
    </item>
<item>
        <title>8b5ee113 - sh: move sh clock.c contents to drivers/sh/clk.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/sh/Makefile#8b5ee113</link>
        <description>sh: move sh clock.c contents to drivers/sh/clk.This patch is V2 of the SH clock framework move fromarch/sh/kernel/cpu/clock.c to drivers/sh/clk.c. Allcode except the following functions are moved:clk_init(), clk_get() and clk_put().The init function is still kept in clock.c since itdepends on the SH-specific machvec implementation.The symbols clk_get() and clk_put() already exist inthe common ARM clkdev code, those symbols are left inthe SH tree to avoid duplicating them for SH-Mobile ARM.Signed-off-by: Magnus Damm &lt;damm@opensource.se&gt;Signed-off-by: Paul Mundt &lt;lethal@linux-sh.org&gt;

            List of files:
            /linux-6.15/drivers/sh/Makefile</description>
        <pubDate>Tue, 11 May 2010 13:29:25 +0000</pubDate>
        <dc:creator>Magnus Damm &lt;damm@opensource.se&gt;</dc:creator>
    </item>
<item>
        <title>fae43399 - sh: Break out SuperH PFC code</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/sh/Makefile#fae43399</link>
        <description>sh: Break out SuperH PFC codeThis file breaks out the SuperH PFC code fromarch/sh/kernel/gpio.c + arch/sh/include/asm/gpio.hto drivers/sh/pfc.c + include/linux/sh_pfc.h.Similar to the INTC stuff. The non-SuperH specificfile location makes it possible to share the codebetween multiple architectures.Signed-off-by: Magnus Damm &lt;damm@opensource.se&gt;Signed-off-by: Paul Mundt &lt;lethal@linux-sh.org&gt;

            List of files:
            /linux-6.15/drivers/sh/Makefile</description>
        <pubDate>Fri, 27 Nov 2009 07:38:01 +0000</pubDate>
        <dc:creator>Magnus Damm &lt;damm@opensource.se&gt;</dc:creator>
    </item>
</channel>
</rss>
