- 27 Apr, 2013 4 commits
-
-
Zhang Rui authored
-
Eduardo Valentin authored
This patch changes the driver to avoid the usage of IS_ERR_OR_NULL() macro. This macro can lead to dangerous results, like returning success (0) during a failure scenario (NULL pointer handling). The case present in this driver can be translated to a simple check for IS_ERR(), as the cpufreq_cooling_register() returns either a valid pointer or an ERR_PTR(). Cc: Zhang Rui <rui.zhang@intel.com> Cc: Russell King <rmk@arm.linux.org.uk> Cc: Grant Likely <grant.likely@secretlab.ca> Cc: Rob Herring <rob.herring@calxeda.com> Cc: Hongbo Zhang <hongbo.zhang@stericsson.com> Cc: linux-pm@vger.kernel.org Cc: linux-kernel@vger.kernel.org Cc: devicetree-discuss@lists.ozlabs.org Signed-off-by:
Eduardo Valentin <eduardo.valentin@ti.com> Acked-by:
Fabio Baltieri <fabio.baltieri@linaro.org> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Eduardo Valentin authored
This patch changes the driver to avoid the usage of IS_ERR_OR_NULL() macro. This macro can lead to dangerous results, like returning success (0) during a failure scenario (NULL pointer handling). The case present in this patch has simply be translated to normal check for NULL and if the pointer has an error code. The later case is needed because functions like thermal_zone_get_zone_by_name() could return an ERR_PTR(). Cc: Zhang Rui <rui.zhang@intel.com> Cc: Russell King <rmk@arm.linux.org.uk> Cc: linux-pm@vger.kernel.org Cc: linux-kernel@vger.kernel.org Signed-off-by:
Eduardo Valentin <eduardo.valentin@ti.com> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Zhang Rui authored
Update kernel Documentation for thermal_zone_device_register. Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
- 24 Apr, 2013 36 commits
-
-
Zhang Rui authored
-
Zhang Rui authored
-
Eduardo Valentin authored
This patch updates the documentation for thermal_zone_device_register and removes the warnings generated by scripts/kernel-doc -v. Signed-off-by:
Eduardo Valentin <eduardo.valentin@ti.com> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Eduardo Valentin authored
This patch updates the documentation for create_trip_attrs and removes the warnings generated by scripts/kernel-doc -v. Signed-off-by:
Eduardo Valentin <eduardo.valentin@ti.com> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Eduardo Valentin authored
This patch updates the documentation for thermal_cooling_device_register and removes the warnings generated by scripts/kernel-doc -v. Signed-off-by:
Eduardo Valentin <eduardo.valentin@ti.com> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Eduardo Valentin authored
This patch updates the documentation for thermal_zone_unbind_cooling_device and removes the warnings generated by scripts/kernel-doc -v. Signed-off-by:
Eduardo Valentin <eduardo.valentin@ti.com> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Eduardo Valentin authored
This patch updates the documentation for thermal_zone_bind_cooling_device and removes the warnings generated by scripts/kernel-doc -v. Signed-off-by:
Eduardo Valentin <eduardo.valentin@ti.com> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Eduardo Valentin authored
Restrict usage of GPL modules. Signed-off-by:
Eduardo Valentin <eduardo.valentin@ti.com> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Eduardo Valentin authored
To follow the prefix names used by the thermal functions, this patch renames notify_thermal_framework to thermal_notify_framework. Signed-off-by:
Eduardo Valentin <eduardo.valentin@ti.com> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Eduardo Valentin authored
As per the comment at the top of this file, this is a GPLv2 driver. This patch updates the driver license accordingly. Signed-off-by:
Eduardo Valentin <eduardo.valentin@ti.com> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Eduardo Valentin authored
For memory boundaries safety, use strlcpy instead of strcpy. Signed-off-by:
Eduardo Valentin <eduardo.valentin@ti.com> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Eduardo Valentin authored
Remove defines that are not in used. Signed-off-by:
Eduardo Valentin <eduardo.valentin@ti.com> Acked-by:
Amit Daniel Kachhap <amit.daniel@samsung.com> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Eduardo Valentin authored
Update header list for cpu_cooling.h. Missing definition of cpumask. Signed-off-by:
Eduardo Valentin <eduardo.valentin@ti.com> Acked-by:
Amit Daniel Kachhap <amit.daniel@samsung.com> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Eduardo Valentin authored
The list is not needed so far. Thus removing it. Signed-off-by:
Eduardo Valentin <eduardo.valentin@ti.com> Acked-by:
Amit Daniel Kachhap <amit.daniel@samsung.com> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Eduardo Valentin authored
Just for style purposes, remove extra curl brackets. Signed-off-by:
Eduardo Valentin <eduardo.valentin@ti.com> Acked-by:
Amit Daniel Kachhap <amit.daniel@samsung.com> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Eduardo Valentin authored
Limit the amount of bytes written to dev_name by secure writing with snprintf. Signed-off-by:
Eduardo Valentin <eduardo.valentin@ti.com> Acked-by:
Amit Daniel Kachhap <amit.daniel@samsung.com> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Eduardo Valentin authored
Update comments for this exported function. Signed-off-by:
Eduardo Valentin <eduardo.valentin@ti.com> Acked-by:
Amit Daniel Kachhap <amit.daniel@samsung.com> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Eduardo Valentin authored
Add proper documentation for exported function cpufreq_cooling_register. Signed-off-by:
Eduardo Valentin <eduardo.valentin@ti.com> Acked-by:
Amit Daniel Kachhap <amit.daniel@samsung.com> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Eduardo Valentin authored
Update documentation for cpufreq_set_cur_state callback. Signed-off-by:
Eduardo Valentin <eduardo.valentin@ti.com> Acked-by:
Amit Daniel Kachhap <amit.daniel@samsung.com> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Eduardo Valentin authored
Update documentation for cpufreq_get_cur_state callback. Signed-off-by:
Eduardo Valentin <eduardo.valentin@ti.com> Acked-by:
Amit Daniel Kachhap <amit.daniel@samsung.com> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Eduardo Valentin authored
Update documentation for cpufreq_get_max_state callback. Signed-off-by:
Eduardo Valentin <eduardo.valentin@ti.com> Acked-by:
Amit Daniel Kachhap <amit.daniel@samsung.com> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Eduardo Valentin authored
There is no support for hotplug or any other means of reducing temperature. So, this patch removes these references from Kconfig. Signed-off-by:
Eduardo Valentin <eduardo.valentin@ti.com> Acked-by:
Amit Daniel Kachhap <amit.daniel@samsung.com> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Eduardo Valentin authored
Update kernel-doc comment and documentation for cpufreq_thermal_notifier. Signed-off-by:
Eduardo Valentin <eduardo.valentin@ti.com> Acked-by:
Amit Daniel Kachhap <amit.daniel@samsung.com> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Eduardo Valentin authored
Update kernel-doc comments for cpufreq_apply_cooling function. Signed-off-by:
Eduardo Valentin <eduardo.valentin@ti.com> Acked-by:
Amit Daniel Kachhap <amit.daniel@samsung.com> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Eduardo Valentin authored
Fix kernel-doc warning on get_cpu_frequency and improve documentation comments. Signed-off-by:
Eduardo Valentin <eduardo.valentin@ti.com> Acked-by:
Amit Daniel Kachhap <amit.daniel@samsung.com> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Eduardo Valentin authored
Add documentation for cpufreq_get_cooling_level. As this is an exported function, it has to be documented. Signed-off-by:
Eduardo Valentin <eduardo.valentin@ti.com> Acked-by:
Amit Daniel Kachhap <amit.daniel@samsung.com> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Eduardo Valentin authored
As this is one of the central functions of this file, it deserves a proper documentation. This patch improves the existing comment to format it as a kernel-doc style. Signed-off-by:
Eduardo Valentin <eduardo.valentin@ti.com> Acked-by:
Amit Daniel Kachhap <amit.daniel@samsung.com> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Eduardo Valentin authored
Update documentation for is_cpufreq_valid function so that kernel-doc does not complain about return value. Signed-off-by:
Eduardo Valentin <eduardo.valentin@ti.com> Acked-by:
Amit Daniel Kachhap <amit.daniel@samsung.com> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Eduardo Valentin authored
level will be used only if GET_FREQ mode is requested. There is no potential harm with current code. But for cleaning the compilation log, this patch initializes level to zero. Signed-off-by:
Eduardo Valentin <eduardo.valentin@ti.com> Acked-by:
Amit Daniel Kachhap <amit.daniel@samsung.com> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Eduardo Valentin authored
Restrict the usage to GPL modules. Signed-off-by:
Eduardo Valentin <eduardo.valentin@ti.com> Acked-by:
Amit Daniel Kachhap <amit.daniel@samsung.com> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Eduardo Valentin authored
Simple fixes for making kernel_doc happy about struct cpufreq_cooling_device. Includes also a minor spelling fix. Signed-off-by:
Eduardo Valentin <eduardo.valentin@ti.com> Acked-by:
Amit Daniel Kachhap <amit.daniel@samsung.com> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Eduardo Valentin authored
Remove some unused header files. Signed-off-by:
Eduardo Valentin <eduardo.valentin@ti.com> Acked-by:
Amit Daniel Kachhap <amit.daniel@samsung.com> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Zhang Rui authored
-
Sachin Kamat authored
Added compatible string for Exynos4412 SoC. Signed-off-by:
Sachin Kamat <sachin.kamat@linaro.org> Cc: Amit Daniel Kachhap <amit.daniel@samsung.com> Acked-by:
Eduardo Valentin <eduardo.valentin@ti.com> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Sachin Kamat authored
clk_{un}prepare APIs are required to migrate to common clock framework. While at it convert to use devm_clk_get as it removes some cleanup code. Signed-off-by:
Sachin Kamat <sachin.kamat@linaro.org> Cc: Amit Daniel Kachhap <amit.daniel@samsung.com> Acked-by:
Eduardo Valentin <eduardo.valentin@ti.com> Signed-off-by:
Zhang Rui <rui.zhang@intel.com>
-
Zhang Rui authored
-