aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRomain Perier <romain.perier@gmail.com>2014-11-25 07:28:25 -0500
committerMark Brown <broonie@kernel.org>2014-12-01 14:33:44 -0500
commit8f73110f6bac043026bc923b0a66abe24dd48058 (patch)
tree77fe0fd9bed38af5153ac43baa264b2e931c64a7
parent7a5f5d7b7ec6ccd2e907534e31c13ca63d2b497f (diff)
of: Rename "poweroff-source" property to "system-power-controller"
It reverts commit a4b4e0461ec5 ("of: Add standard property for poweroff capability"). As discussed on the mailing list, it makes more sense to rename back to the old established property name, without the vendor prefix. Problem being that the word "source" usually tends to be used for inputs and that is out of control of the OS. The poweroff capability is an output which simply turns the system-power off. Also, this property might be used by drivers which power-off the system and power back on subsequent RTC alarms. This seems to suggest to remove "poweroff" from the property name and to choose "system-power-controller" as the more generic name. This patchs adds the required renaming changes and defines an helper function which checks if this property is set. Signed-off-by: Romain Perier <romain.perier@gmail.com> Acked-by: Grant Likely <grant.likely@linaro.org> Acked-by: Johan Hovold <johan@kernel.org> Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r--Documentation/devicetree/bindings/power/power-controller.txt (renamed from Documentation/devicetree/bindings/power/poweroff.txt)0
-rw-r--r--Documentation/devicetree/bindings/regulator/act8865-regulator.txt4
-rw-r--r--drivers/regulator/act8865-regulator.c2
-rw-r--r--include/linux/of.h6
4 files changed, 6 insertions, 6 deletions
diff --git a/Documentation/devicetree/bindings/power/poweroff.txt b/Documentation/devicetree/bindings/power/power-controller.txt
index 845868bf3273..845868bf3273 100644
--- a/Documentation/devicetree/bindings/power/poweroff.txt
+++ b/Documentation/devicetree/bindings/power/power-controller.txt
diff --git a/Documentation/devicetree/bindings/regulator/act8865-regulator.txt b/Documentation/devicetree/bindings/regulator/act8865-regulator.txt
index 01a5b0766e53..dad6358074ac 100644
--- a/Documentation/devicetree/bindings/regulator/act8865-regulator.txt
+++ b/Documentation/devicetree/bindings/regulator/act8865-regulator.txt
@@ -6,8 +6,8 @@ Required properties:
6- reg: I2C slave address 6- reg: I2C slave address
7 7
8Optional properties: 8Optional properties:
9- poweroff-source: Telling whether or not this pmic is controlling 9- system-power-controller: Telling whether or not this pmic is controlling
10 the system power. See Documentation/devicetree/bindings/power/poweroff.txt . 10 the system power. See Documentation/devicetree/bindings/power/power-controller.txt .
11 11
12Any standard regulator properties can be used to configure the single regulator. 12Any standard regulator properties can be used to configure the single regulator.
13 13
diff --git a/drivers/regulator/act8865-regulator.c b/drivers/regulator/act8865-regulator.c
index 76301ed0f8d4..9eec453b745d 100644
--- a/drivers/regulator/act8865-regulator.c
+++ b/drivers/regulator/act8865-regulator.c
@@ -365,7 +365,7 @@ static int act8865_pmic_probe(struct i2c_client *client,
365 return ret; 365 return ret;
366 } 366 }
367 367
368 if (of_system_has_poweroff_source(dev->of_node)) { 368 if (of_device_is_system_power_controller(dev->of_node)) {
369 if (!pm_power_off) { 369 if (!pm_power_off) {
370 act8865_i2c_client = client; 370 act8865_i2c_client = client;
371 act8865->off_reg = off_reg; 371 act8865->off_reg = off_reg;
diff --git a/include/linux/of.h b/include/linux/of.h
index 27b3ba1e9e59..257677256612 100644
--- a/include/linux/of.h
+++ b/include/linux/of.h
@@ -867,14 +867,14 @@ static inline int of_changeset_update_property(struct of_changeset *ocs,
867extern int of_resolve_phandles(struct device_node *tree); 867extern int of_resolve_phandles(struct device_node *tree);
868 868
869/** 869/**
870 * of_system_has_poweroff_source - Tells if poweroff-source is found for device_node 870 * of_device_is_system_power_controller - Tells if system-power-controller is found for device_node
871 * @np: Pointer to the given device_node 871 * @np: Pointer to the given device_node
872 * 872 *
873 * return true if present false otherwise 873 * return true if present false otherwise
874 */ 874 */
875static inline bool of_system_has_poweroff_source(const struct device_node *np) 875static inline bool of_device_is_system_power_controller(const struct device_node *np)
876{ 876{
877 return of_property_read_bool(np, "poweroff-source"); 877 return of_property_read_bool(np, "system-power-controller");
878} 878}
879 879
880#endif /* _LINUX_OF_H */ 880#endif /* _LINUX_OF_H */