]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
power: axp152: Registers definitions in header
authorPaul Kocialkowski <contact@paulk.fr>
Sun, 22 Mar 2015 17:08:20 +0000 (18:08 +0100)
committerLothar Waßmann <LW@KARO-electronics.de>
Tue, 8 Sep 2015 19:47:14 +0000 (21:47 +0200)
Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
Acked-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
drivers/power/axp152.c
include/axp152.h

index 27c2c4c8da0498c37fa3436fa1818ff89e0d77f7..740a3b41cd31ade7b5a88d11b77986ef4bdef36d 100644 (file)
@@ -8,17 +8,6 @@
 #include <i2c.h>
 #include <axp152.h>
 
 #include <i2c.h>
 #include <axp152.h>
 
-enum axp152_reg {
-       AXP152_CHIP_VERSION = 0x3,
-       AXP152_DCDC2_VOLTAGE = 0x23,
-       AXP152_DCDC3_VOLTAGE = 0x27,
-       AXP152_DCDC4_VOLTAGE = 0x2B,
-       AXP152_LDO2_VOLTAGE = 0x2A,
-       AXP152_SHUTDOWN = 0x32,
-};
-
-#define AXP152_POWEROFF                        (1 << 7)
-
 static int axp152_write(enum axp152_reg reg, u8 val)
 {
        return i2c_write(0x30, reg, 1, &val, 1);
 static int axp152_write(enum axp152_reg reg, u8 val)
 {
        return i2c_write(0x30, reg, 1, &val, 1);
index 3e5ccbd0d8d785fa3313fe0e9b9a12bdd2258500..9d205f8d3af5015c5c73f99d741633b5d68e0091 100644 (file)
@@ -3,6 +3,18 @@
  *
  * SPDX-License-Identifier:    GPL-2.0+
  */
  *
  * SPDX-License-Identifier:    GPL-2.0+
  */
+
+enum axp152_reg {
+       AXP152_CHIP_VERSION = 0x3,
+       AXP152_DCDC2_VOLTAGE = 0x23,
+       AXP152_DCDC3_VOLTAGE = 0x27,
+       AXP152_DCDC4_VOLTAGE = 0x2B,
+       AXP152_LDO2_VOLTAGE = 0x2A,
+       AXP152_SHUTDOWN = 0x32,
+};
+
+#define AXP152_POWEROFF                        (1 << 7)
+
 int axp152_set_dcdc2(int mvolt);
 int axp152_set_dcdc3(int mvolt);
 int axp152_set_dcdc4(int mvolt);
 int axp152_set_dcdc2(int mvolt);
 int axp152_set_dcdc3(int mvolt);
 int axp152_set_dcdc4(int mvolt);