<?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 sysfs-class-devfreq</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>08e23d05 - PM / devfreq: Fix buffer overflow in trans_stat_show</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq#08e23d05</link>
        <description>PM / devfreq: Fix buffer overflow in trans_stat_showFix buffer overflow in trans_stat_show().Convert simple snprintf to the more secure scnprintf with size ofPAGE_SIZE.Add condition checking if we are exceeding PAGE_SIZE and exit early fromloop. Also add at the end a warning that we exceeded PAGE_SIZE and thatstats is disabled.Return -EFBIG in the case where we don&apos;t have enough space to write thefull transition table.Also document in the ABI that this function can return -EFBIG error.Link: https://lore.kernel.org/all/20231024183016.14648-2-ansuelsmth@gmail.com/Cc: stable@vger.kernel.orgCloses: https://bugzilla.kernel.org/show_bug.cgi?id=218041Fixes: e552bbaf5b98 (&quot;PM / devfreq: Add sysfs node for representing frequency transition information.&quot;)Signed-off-by: Christian Marangi &lt;ansuelsmth@gmail.com&gt;Signed-off-by: Chanwoo Choi &lt;cw00.choi@samsung.com&gt;

            List of files:
            /linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq</description>
        <pubDate>Tue, 24 Oct 2023 18:30:15 +0000</pubDate>
        <dc:creator>Christian Marangi &lt;ansuelsmth@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>05f15314 - PM / devfreq: Remove the invalid description for get_target_freq</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq#05f15314</link>
        <description>PM / devfreq: Remove the invalid description for get_target_freqFirst of all, no_central_polling was removed sincecommit 7e6fdd4bad03 (&quot;PM / devfreq: Core updates to support deviceswhich can idle&quot;)Secondly, get_target_freq() is not only called only with update_devfreq()notified by OPP now, but also min/max freq qos notifier.So remove this invalid description now to avoid confusing.Signed-off-by: Dong Aisheng &lt;aisheng.dong@nxp.com&gt;Signed-off-by: Chanwoo Choi &lt;cw00.choi@samsung.com&gt;

            List of files:
            /linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq</description>
        <pubDate>Tue, 23 Mar 2021 07:20:09 +0000</pubDate>
        <dc:creator>Dong Aisheng &lt;aisheng.dong@nxp.com&gt;</dc:creator>
    </item>
<item>
        <title>002a9c2f - docs: ABI: fix syntax to be parsed using ReST notation</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq#002a9c2f</link>
        <description>docs: ABI: fix syntax to be parsed using ReST notationThere are a number of new changes at the ABI files that causethem to produce warnings when generating ABI output.Fix them.Acked-by: Jonathan Corbet &lt;corbet@lwn.net&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;Link: https://lore.kernel.org/r/55a89f423cf122982c462d257722e44d6ece4b36.1604042072.git.mchehab+huawei@kernel.orgSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq</description>
        <pubDate>Fri, 30 Oct 2020 07:40:47 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>5f1a9066 - PM / devfreq: Add governor attribute flag for specifc sysfs nodes</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq#5f1a9066</link>
        <description>PM / devfreq: Add governor attribute flag for specifc sysfs nodesDEVFREQ supports the default governors like performance, simple_ondemand andalso allows the devfreq driver to add their own governor like tegra30-devfreq.caccording to their requirement. In result, some sysfs attributes are usefulor not useful. Prior to that the user can access all sysfs attributesregardless of the available attributes.So, clarify the access permission of sysfs attributes according to governor.When adding the devfreq governor, can specify the available attributeinformation by using DEVFREQ_GOV_ATTR_* constant variable. The user canread or write the sysfs attributes in accordance to the specified attributes.When adding the governor, can add the following attributesaccording to the governor feature.[Definition for speific sysfs attributes]- DEVFREQ_GOV_ATTR_POLLING_INTERVAL to update polling interval for timer.  : /sys/class/devfreq/[devfreq dev name]/polling_interval- DEVFREQ_GOV_ATTR_TIMER to change the type of timer on either deferrable  or dealyed timer.  : /sys/class/devfreq/[devfreq dev name]/timerAnd all devfreq governors have to support the following common attributes.The common attributes are added to devfreq class by default.- governor- available_governors- available_frequencies- cur_freq- target_freq- min_freq- max_freq- trans_stat[Table of governor attribute flags for devfreq governors]------------------------------------------------------------------------------                      | simple    | perfor | power | user | passive | tegra30		      | ondemand  | mance  | save  | space|         |------------------------------------------------------------------------------governor              | O         | O      | O     | O    | O       | Oavailable_governors   | O         | O      | O     | O    | O       | Oavailable_frequencies | O         | O      | O     | O    | O       | Ocur_freq              | O         | O      | O     | O    | O       | Otarget_freq           | O         | O      | O     | O    | O       | Omin_freq              | O         | O      | O     | O    | O       | Omax_freq              | O         | O      | O     | O    | O       | Otrans_stat            | O         | O      | O     | O    | O       | O                      --------------------------------------------------------polling_interval      | O         | X      | X     | X    | X       | Otimer                 | O         | X      | X     | X    | X       | X------------------------------------------------------------------------------Reviewed-by: Dmitry Osipenko &lt;digetx@gmail.com&gt;Tested-by: Dmitry Osipenko &lt;digetx@gmail.com&gt;Signed-off-by: Chanwoo Choi &lt;cw00.choi@samsung.com&gt;

            List of files:
            /linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq</description>
        <pubDate>Fri, 03 Jul 2020 08:20:27 +0000</pubDate>
        <dc:creator>Chanwoo Choi &lt;cw00.choi@samsung.com&gt;</dc:creator>
    </item>
<item>
        <title>4dc3bab8 - PM / devfreq: Add support delayed timer for polling mode</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq#4dc3bab8</link>
        <description>PM / devfreq: Add support delayed timer for polling modeUntil now, the devfreq driver using polling mode like simple_ondemandgovernor have used only deferrable timer for reducing the redundantpower consumption. It reduces the CPU wake-up from idle due to polling modewhich check the status of Non-CPU device.But, it has a problem for Non-CPU device like DMC device with DMA operation.Some Non-CPU device need to do monitor continuously regardless of CPU statein order to decide the proper next status of Non-CPU device.So, add support the delayed timer for polling mode to supportthe repetitive monitoring. The devfreq driver and user can selectthe kind of timer on either deferrable and delayed timer.For example, change the timer type of DMC devicebased on Exynos5422-based Odroid-XU3 as following:- If want to use deferrable timer as following:echo deferrable &gt; /sys/class/devfreq/10c20000.memory-controller/timer- If want to use delayed timer as following:echo delayed &gt; /sys/class/devfreq/10c20000.memory-controller/timerReviewed-by: Bartlomiej Zolnierkiewicz &lt;b.zolnierkie@samsung.com&gt;Reviewed-by: Lukasz Luba &lt;lukasz.luba@arm.com&gt;Signed-off-by: Chanwoo Choi &lt;cw00.choi@samsung.com&gt;

            List of files:
            /linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq</description>
        <pubDate>Thu, 02 Jul 2020 11:41:28 +0000</pubDate>
        <dc:creator>Chanwoo Choi &lt;cw00.choi@samsung.com&gt;</dc:creator>
    </item>
<item>
        <title>14a34396 - PM / devfreq: Add clearing transitions stats</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq#14a34396</link>
        <description>PM / devfreq: Add clearing transitions statsAdd clearing transition table and time in states devfreq statisticsby writing 0 (zero) to trans_stat file in devfreq sysfs. An example useis like following:echo 0 &gt; /sys/class/devfreq/devfreqX/trans_statSigned-off-by: Kamil Konieczny &lt;k.konieczny@samsung.com&gt;[cw00.choi: Edit return value if entering the wrong value for reset and use arrary3_size() to get the size of 3-dimensional array]Signed-off-by: Chanwoo Choi &lt;cw00.choi@samsung.com&gt;

            List of files:
            /linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq</description>
        <pubDate>Thu, 05 Dec 2019 14:55:26 +0000</pubDate>
        <dc:creator>Kamil Konieczny &lt;k.konieczny@samsung.com&gt;</dc:creator>
    </item>
<item>
        <title>2fee1a7c - PM / devfreq: Add new name attribute for sysfs</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq#2fee1a7c</link>
        <description>PM / devfreq: Add new name attribute for sysfsThe commit 4585fbcb5331 (&quot;PM / devfreq: Modify the device name as devfreq(X) forsysfs&quot;) changed the node name to devfreq(x). After this commit, it is notpossible to get the device name through /sys/class/devfreq/devfreq(X)/*.Add new name attribute in order to get device name.Cc: stable@vger.kernel.orgFixes: 4585fbcb5331 (&quot;PM / devfreq: Modify the device name as devfreq(X) for sysfs&quot;)Signed-off-by: Chanwoo Choi &lt;cw00.choi@samsung.com&gt;

            List of files:
            /linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq</description>
        <pubDate>Tue, 05 Nov 2019 09:18:03 +0000</pubDate>
        <dc:creator>Chanwoo Choi &lt;cw00.choi@samsung.com&gt;</dc:creator>
    </item>
<item>
        <title>ed66bcd0 - ABI: fix some syntax issues at the ABI database</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq#ed66bcd0</link>
        <description>ABI: fix some syntax issues at the ABI databaseOn those three files, the ABI representation described atREADME are violated.- at sysfs-bus-iio-proximity-as3935:	a &apos;:&apos; character is missing after &quot;What&quot;- at sysfs-class-devfreq:	there&apos;s a typo at Description- at sysfs-class-cxl, it is using the &quot;:&quot; character at a	file preamble, causing it to be misinterpreted as a	tag.- On the other files, instead of &quot;What&quot;, they use &quot;Where&quot;.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+samsung@kernel.org&gt;Acked-by: Rafael J. Wysocki &lt;rafael.j.wysocki@intel.com&gt;Acked-by: Andrew Donnellan &lt;ajd@linux.ibm.com&gt;  # cxlSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq</description>
        <pubDate>Fri, 14 Jun 2019 02:04:07 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab@s-opensource.com&gt;</dc:creator>
    </item>
<item>
        <title>de9c7394 - PM / devfreq: add comments and Documentation</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq#de9c7394</link>
        <description>PM / devfreq: add comments and Documentation- Added missing ABI documents- Added comments to clarify the objectives of functionsSigned-off-by: MyungJoo Ham &lt;myungjoo.ham@samsung.com&gt;Acked-by: Nishanth Menon &lt;nm@ti.com&gt;Acked-by: Rajagopal Venkat &lt;rajagopal.venkat@linaro.org&gt;

            List of files:
            /linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq</description>
        <pubDate>Tue, 05 Feb 2013 09:40:17 +0000</pubDate>
        <dc:creator>MyungJoo Ham &lt;myungjoo.ham@samsung.com&gt;</dc:creator>
    </item>
<item>
        <title>50a5b33e - PM / devfreq: Add sysfs node to expose available governors</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq#50a5b33e</link>
        <description>PM / devfreq: Add sysfs node to expose available governorsNow that governor list can be variable, knowing the available governorsis useful to be able to select a governor using relevant sysfs node.Cc: Rajagopal Venkat &lt;rajagopal.venkat@linaro.org&gt;Cc: MyungJoo Ham &lt;myungjoo.ham@samsung.com&gt;Cc: Kyungmin Park &lt;kyungmin.park@samsung.com&gt;Cc: &quot;Rafael J. Wysocki&quot; &lt;rjw@sisk.pl&gt;Cc: Kevin Hilman &lt;khilman@ti.com&gt;Cc: linux-pm@vger.kernel.orgCc: linux-kernel@vger.kernel.orgSigned-off-by: Nishanth Menon &lt;nm@ti.com&gt;Signed-off-by: MyungJoo Ham &lt;myungjoo.ham@samsung.com&gt;

            List of files:
            /linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq</description>
        <pubDate>Mon, 29 Oct 2012 20:01:48 +0000</pubDate>
        <dc:creator>Nishanth Menon &lt;nm@ti.com&gt;</dc:creator>
    </item>
<item>
        <title>0359d1af - PM / devfreq: allow sysfs governor node to switch governor</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq#0359d1af</link>
        <description>PM / devfreq: allow sysfs governor node to switch governorThis allows us to select governor runtime from thedefault configuration without having to rebuild kernelor the devfreq driver using the sysfs node:/sys/class/devfreq/.../governorcat of the governor will return valid governorand an echo &apos;governor_name&apos;&gt;governor will switchgovernorCc: Rajagopal Venkat &lt;rajagopal.venkat@linaro.org&gt;Cc: MyungJoo Ham &lt;myungjoo.ham@samsung.com&gt;Cc: Kyungmin Park &lt;kyungmin.park@samsung.com&gt;Cc: &quot;Rafael J. Wysocki&quot; &lt;rjw@sisk.pl&gt;Cc: Kevin Hilman &lt;khilman@ti.com&gt;Cc: linux-pm@vger.kernel.orgCc: linux-kernel@vger.kernel.orgSigned-off-by: Nishanth Menon &lt;nm@ti.com&gt;Acked-by: MyungJoo Ham &lt;myungjoo.ham@samsung.com&gt;Signed-off-by: MyungJoo Ham &lt;myungjoo.ham@samsung.com&gt;

            List of files:
            /linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq</description>
        <pubDate>Mon, 29 Oct 2012 20:01:47 +0000</pubDate>
        <dc:creator>Nishanth Menon &lt;nm@ti.com&gt;</dc:creator>
    </item>
<item>
        <title>e552bbaf - PM / devfreq: Add sysfs node for representing frequency transition information.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq#e552bbaf</link>
        <description>PM / devfreq: Add sysfs node for representing frequency transition information.This patch adds sysfs node which can be used to get information of frequencytransition. It represents transition table which contains total number of transition ofeach freqeuncy state and time spent. It is inspired CPUFREQ&apos;s status driver.Signed-off-by: Jonghwa Lee &lt;jonghwa3.lee@samsung.com&gt;[Added Documentation/ABI entry, updated kernel-doc, and resolved merge conflict]Signed-off-by: MyungJoo Ham &lt;myungjoo.ham@samsung.com&gt;

            List of files:
            /linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq</description>
        <pubDate>Thu, 23 Aug 2012 11:00:46 +0000</pubDate>
        <dc:creator>Jonghwa Lee &lt;jonghwa3.lee@samsung.com&gt;</dc:creator>
    </item>
<item>
        <title>d287de85 - PM / devfreq: Add sysfs node to expose available frequencies</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq#d287de85</link>
        <description>PM / devfreq: Add sysfs node to expose available frequenciesdevfreq governors such as ondemand are controlled by a min andmax frequency, while governors like userspace governor allow usto set a specific frequency.However, for the same specific device, depending on the SoC, theavailable frequencies can vary.So expose the available frequencies as a snapshot over sysfs toallow informed decisions.This was inspired by cpufreq framework&apos;s equivalent for similarusage sysfs node: scaling_available_frequencies.Cc: Rajagopal Venkat &lt;rajagopal.venkat@linaro.org&gt;Cc: MyungJoo Ham &lt;myungjoo.ham@samsung.com&gt;Cc: Kyungmin Park &lt;kyungmin.park@samsung.com&gt;Cc: &quot;Rafael J. Wysocki&quot; &lt;rjw@sisk.pl&gt;Cc: Kevin Hilman &lt;khilman@ti.com&gt;Cc: linux-pm@vger.kernel.orgCc: linux-kernel@vger.kernel.orgSigned-off-by: Nishanth Menon &lt;nm@ti.com&gt;Signed-off-by: MyungJoo Ham &lt;myungjoo.ham@samsung.com&gt;

            List of files:
            /linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq</description>
        <pubDate>Fri, 26 Oct 2012 00:48:59 +0000</pubDate>
        <dc:creator>Nishanth Menon &lt;nm@ti.com&gt;</dc:creator>
    </item>
<item>
        <title>7f98a905 - PM / devfreq: Add current freq callback in device profile</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq#7f98a905</link>
        <description>PM / devfreq: Add current freq callback in device profileDevfreq returns governor predicted frequency as current frequencyvia sysfs interface. But device may not support all frequenciesthat governor predicts. So add a callback in device profile to getcurrent freq from driver. Also add a new sysfs node to exposegovernor predicted next target frequency.Signed-off-by: Rajagopal Venkat &lt;rajagopal.venkat@linaro.org&gt;Acked-by: MyungJoo Ham &lt;myungjoo.ham@samsung.com&gt;Signed-off-by: Rafael J. Wysocki &lt;rafael.j.wysocki@intel.com&gt;

            List of files:
            /linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq</description>
        <pubDate>Thu, 25 Oct 2012 23:50:26 +0000</pubDate>
        <dc:creator>Rajagopal Venkat &lt;rajagopal.venkat@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>7e6fdd4b - PM / devfreq: Core updates to support devices which can idle</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq#7e6fdd4b</link>
        <description>PM / devfreq: Core updates to support devices which can idlePrepare devfreq core framework to support devices whichcan idle. When device idleness is detected perhaps throughruntime-pm, need some mechanism to suspend devfreq loadmonitoring and resume back when device is online. Presentcode continues monitoring unless device is removed fromdevfreq core.This patch introduces following design changes, - use per device work instead of global work to monitor device   load. This enables suspend/resume of device devfreq and   reduces monitoring code complexity. - decouple delayed work based load monitoring logic from core   by introducing helpers functions to be used by governors. This   provides flexibility for governors either to use delayed work   based monitoring functions or to implement their own mechanism. - devfreq core interacts with governors via events to perform   specific actions. These events include start/stop devfreq.   This sets ground for adding suspend/resume events.The devfreq apis are not modified and are kept intact.Signed-off-by: Rajagopal Venkat &lt;rajagopal.venkat@linaro.org&gt;Acked-by: MyungJoo Ham &lt;myungjoo.ham@samsung.com&gt;Signed-off-by: Rafael J. Wysocki &lt;rafael.j.wysocki@intel.com&gt;

            List of files:
            /linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq</description>
        <pubDate>Thu, 25 Oct 2012 23:50:09 +0000</pubDate>
        <dc:creator>Rajagopal Venkat &lt;rajagopal.venkat@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>ce26c5bb - PM / devfreq: Add basic governors</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq#ce26c5bb</link>
        <description>PM / devfreq: Add basic governorsFour cpufreq-like governors are provided as examples.powersave: use the lowest frequency possible. The user (device) shouldset the polling_ms as 0 because polling is useless for this governor.performance: use the highest freqeuncy possible. The user (device)should set the polling_ms as 0 because polling is useless for thisgovernor.userspace: use the user specified frequency stored atdevfreq.user_set_freq. With sysfs support in the following patch, a usermay set the value with the sysfs interface.simple_ondemand: simplified version of cpufreq&apos;s ondemand governor.When a user updates OPP entries (enable/disable/add), OPP frameworkautomatically notifies devfreq to update operating frequencyaccordingly. Thus, devfreq users (device drivers) do not need to updatedevfreq manually with OPP entry updates or set polling_ms for powersave, performance, userspace, or any other &quot;static&quot; governors.Note that these are given only as basic examples for governors and anydevices with devfreq may implement their own governors with the driversand use them.Signed-off-by: MyungJoo Ham &lt;myungjoo.ham@samsung.com&gt;Signed-off-by: Kyungmin Park &lt;kyungmin.park@samsung.com&gt;Reviewed-by: Mike Turquette &lt;mturquette@ti.com&gt;Acked-by: Kevin Hilman &lt;khilman@ti.com&gt;Signed-off-by: Rafael J. Wysocki &lt;rjw@sisk.pl&gt;

            List of files:
            /linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq</description>
        <pubDate>Sat, 01 Oct 2011 22:19:34 +0000</pubDate>
        <dc:creator>MyungJoo Ham &lt;myungjoo.ham@samsung.com&gt;</dc:creator>
    </item>
<item>
        <title>9005b650 - PM / devfreq: Add common sysfs interfaces</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq#9005b650</link>
        <description>PM / devfreq: Add common sysfs interfacesDevice specific sysfs interface /sys/devices/.../power/devfreq_*- governor	R: name of governor- cur_freq	R: current frequency- polling_interval	R: polling interval in ms given with devfreq profile			W: update polling interval.- central_polling	R: 1 if polling is managed by devfreq frameworkSigned-off-by: MyungJoo Ham &lt;myungjoo.ham@samsung.com&gt;Signed-off-by: Kyungmin Park &lt;kyungmin.park@samsung.com&gt;Reviewed-by: Mike Turquette &lt;mturquette@ti.com&gt;Acked-by: Kevin Hilman &lt;khilman@ti.com&gt;Signed-off-by: Rafael J. Wysocki &lt;rjw@sisk.pl&gt;-- Documentation/ABI/testing/sysfs-class-devfreq |   44 ++++++++++++++++ drivers/devfreq/devfreq.c                     |   69 ++++++++++++++++++++++++++ 2 files changed, 113 insertions(+) create mode 100644 Documentation/ABI/testing/sysfs-class-devfreq

            List of files:
            /linux-6.15/Documentation/ABI/testing/sysfs-class-devfreq</description>
        <pubDate>Sat, 01 Oct 2011 22:19:28 +0000</pubDate>
        <dc:creator>MyungJoo Ham &lt;myungjoo.ham@samsung.com&gt;</dc:creator>
    </item>
</channel>
</rss>
