]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
of: Rename "poweroff-source" property to "system-power-controller"
authorRomain Perier <romain.perier@gmail.com>
Tue, 25 Nov 2014 12:28:25 +0000 (12:28 +0000)
committerMark Brown <broonie@kernel.org>
Mon, 1 Dec 2014 19:33:44 +0000 (19:33 +0000)
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>
Documentation/devicetree/bindings/power/power-controller.txt [moved from Documentation/devicetree/bindings/power/poweroff.txt with 100% similarity]
Documentation/devicetree/bindings/regulator/act8865-regulator.txt
drivers/regulator/act8865-regulator.c
include/linux/of.h

index 01a5b0766e535e15a4ccd9953d443ade6cd85a19..dad6358074ac51bbd4d73b102650d038053b9cf3 100644 (file)
@@ -6,8 +6,8 @@ Required properties:
 - reg: I2C slave address
 
 Optional properties:
-- poweroff-source: Telling whether or not this pmic is controlling
-  the system power. See Documentation/devicetree/bindings/power/poweroff.txt .
+- system-power-controller: Telling whether or not this pmic is controlling
+  the system power. See Documentation/devicetree/bindings/power/power-controller.txt .
 
 Any standard regulator properties can be used to configure the single regulator.
 
index 76301ed0f8d4749ef58511e94873ce12eea9417c..9eec453b745d87facf2bb339194f0b6f32d80feb 100644 (file)
@@ -365,7 +365,7 @@ static int act8865_pmic_probe(struct i2c_client *client,
                return ret;
        }
 
-       if (of_system_has_poweroff_source(dev->of_node)) {
+       if (of_device_is_system_power_controller(dev->of_node)) {
                if (!pm_power_off) {
                        act8865_i2c_client = client;
                        act8865->off_reg = off_reg;
index 27b3ba1e9e59b3dc5cbeb126a3eb641f78c81641..257677256612f36638dac704695830dd1a41bbf3 100644 (file)
@@ -867,14 +867,14 @@ static inline int of_changeset_update_property(struct of_changeset *ocs,
 extern int of_resolve_phandles(struct device_node *tree);
 
 /**
- * of_system_has_poweroff_source - Tells if poweroff-source is found for device_node
+ * of_device_is_system_power_controller - Tells if system-power-controller is found for device_node
  * @np: Pointer to the given device_node
  *
  * return true if present false otherwise
  */
-static inline bool of_system_has_poweroff_source(const struct device_node *np)
+static inline bool of_device_is_system_power_controller(const struct device_node *np)
 {
-       return of_property_read_bool(np, "poweroff-source");
+       return of_property_read_bool(np, "system-power-controller");
 }
 
 #endif /* _LINUX_OF_H */