Required properties of the main device node (the parent!):
+ - s5m8767,pmic-buck-ds-gpios: GPIO specifiers for three host gpio's used
+   for selecting GPIO DVS lines. It is one-to-one mapped to dvs gpio lines.
+
+ [1] If either of the 's5m8767,pmic-buck[2/3/4]-uses-gpio-dvs' optional
+     property is specified, then all the eight voltage values for the
+     's5m8767,pmic-buck[2/3/4]-dvs-voltage' should be specified.
+
+Optional properties of the main device node (the parent!):
  - s5m8767,pmic-buck2-dvs-voltage: A set of 8 voltage values in micro-volt (uV)
    units for buck2 when changing voltage using gpio dvs. Refer to [1] below
    for additional information.
    units for buck4 when changing voltage using gpio dvs. Refer to [1] below
    for additional information.
 
- - s5m8767,pmic-buck-ds-gpios: GPIO specifiers for three host gpio's used
-   for selecting GPIO DVS lines. It is one-to-one mapped to dvs gpio lines.
-
- [1] If none of the 's5m8767,pmic-buck[2/3/4]-uses-gpio-dvs' optional
-     property is specified, the 's5m8767,pmic-buck[2/3/4]-dvs-voltage'
-     property should specify atleast one voltage level (which would be a
-     safe operating voltage).
-
-     If either of the 's5m8767,pmic-buck[2/3/4]-uses-gpio-dvs' optional
-     property is specified, then all the eight voltage values for the
-     's5m8767,pmic-buck[2/3/4]-dvs-voltage' should be specified.
-
-Optional properties of the main device node (the parent!):
  - s5m8767,pmic-buck2-uses-gpio-dvs: 'buck2' can be controlled by gpio dvs.
  - s5m8767,pmic-buck3-uses-gpio-dvs: 'buck3' can be controlled by gpio dvs.
  - s5m8767,pmic-buck4-uses-gpio-dvs: 'buck4' can be controlled by gpio dvs.
 
        /* DS4 GPIO */
        gpio_direction_output(pdata->buck_ds[2], 0x0);
 
-       if (pdata->buck2_gpiodvs || pdata->buck3_gpiodvs ||
-          pdata->buck4_gpiodvs) {
-               regmap_update_bits(s5m8767->iodev->regmap_pmic,
-                               S5M8767_REG_BUCK2CTRL, 1 << 1,
-                               (pdata->buck2_gpiodvs) ? (1 << 1) : (0 << 1));
-               regmap_update_bits(s5m8767->iodev->regmap_pmic,
-                               S5M8767_REG_BUCK3CTRL, 1 << 1,
-                               (pdata->buck3_gpiodvs) ? (1 << 1) : (0 << 1));
-               regmap_update_bits(s5m8767->iodev->regmap_pmic,
-                               S5M8767_REG_BUCK4CTRL, 1 << 1,
-                               (pdata->buck4_gpiodvs) ? (1 << 1) : (0 << 1));
-       }
+       regmap_update_bits(s5m8767->iodev->regmap_pmic,
+                          S5M8767_REG_BUCK2CTRL, 1 << 1,
+                          (pdata->buck2_gpiodvs) ? (1 << 1) : (0 << 1));
+       regmap_update_bits(s5m8767->iodev->regmap_pmic,
+                          S5M8767_REG_BUCK3CTRL, 1 << 1,
+                          (pdata->buck3_gpiodvs) ? (1 << 1) : (0 << 1));
+       regmap_update_bits(s5m8767->iodev->regmap_pmic,
+                          S5M8767_REG_BUCK4CTRL, 1 << 1,
+                          (pdata->buck4_gpiodvs) ? (1 << 1) : (0 << 1));
 
        /* Initialize GPIO DVS registers */
        for (i = 0; i < 8; i++) {