power: test_power: Use enum as index for array of supplies
authorKrzysztof Kozlowski <k.kozlowski@samsung.com>
Fri, 23 Jan 2015 10:38:00 +0000 (11:38 +0100)
committerSebastian Reichel <sre@kernel.org>
Fri, 23 Jan 2015 15:03:00 +0000 (16:03 +0100)
Replace hard-coded numbers for indices of power supply array with enum.
This improves a little the readability as one does not have to guess
which power supply is associated with number.

Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Signed-off-by: Sebastian Reichel <sre@kernel.org>
drivers/power/test_power.c

index 0152f35dca5c71c8f4bdddd617606e544831ff69..f26b1fa00fe154a5dd88a241e02a987a41ed4520 100644 (file)
 #include <linux/delay.h>
 #include <linux/vermagic.h>
 
+enum test_power_id {
+       TEST_AC,
+       TEST_BATTERY,
+       TEST_USB,
+       TEST_POWER_NUM,
+};
+
 static int ac_online                   = 1;
 static int usb_online                  = 1;
 static int battery_status              = POWER_SUPPLY_STATUS_DISCHARGING;
@@ -147,7 +154,7 @@ static char *test_power_ac_supplied_to[] = {
 };
 
 static struct power_supply test_power_supplies[] = {
-       {
+       [TEST_AC] = {
                .name = "test_ac",
                .type = POWER_SUPPLY_TYPE_MAINS,
                .supplied_to = test_power_ac_supplied_to,
@@ -155,13 +162,15 @@ static struct power_supply test_power_supplies[] = {
                .properties = test_power_ac_props,
                .num_properties = ARRAY_SIZE(test_power_ac_props),
                .get_property = test_power_get_ac_property,
-       }, {
+       },
+       [TEST_BATTERY] = {
                .name = "test_battery",
                .type = POWER_SUPPLY_TYPE_BATTERY,
                .properties = test_power_battery_props,
                .num_properties = ARRAY_SIZE(test_power_battery_props),
                .get_property = test_power_get_battery_property,
-       }, {
+       },
+       [TEST_USB] = {
                .name = "test_usb",
                .type = POWER_SUPPLY_TYPE_USB,
                .supplied_to = test_power_ac_supplied_to,
@@ -178,6 +187,8 @@ static int __init test_power_init(void)
        int i;
        int ret;
 
+       BUILD_BUG_ON(TEST_POWER_NUM != ARRAY_SIZE(test_power_supplies));
+
        for (i = 0; i < ARRAY_SIZE(test_power_supplies); i++) {
                ret = power_supply_register(NULL, &test_power_supplies[i]);
                if (ret) {
@@ -309,7 +320,7 @@ static inline void signal_power_supply_changed(struct power_supply *psy)
 static int param_set_ac_online(const char *key, const struct kernel_param *kp)
 {
        ac_online = map_get_value(map_ac_online, key, ac_online);
-       signal_power_supply_changed(&test_power_supplies[0]);
+       signal_power_supply_changed(&test_power_supplies[TEST_AC]);
        return 0;
 }
 
@@ -322,7 +333,7 @@ static int param_get_ac_online(char *buffer, const struct kernel_param *kp)
 static int param_set_usb_online(const char *key, const struct kernel_param *kp)
 {
        usb_online = map_get_value(map_ac_online, key, usb_online);
-       signal_power_supply_changed(&test_power_supplies[2]);
+       signal_power_supply_changed(&test_power_supplies[TEST_USB]);
        return 0;
 }
 
@@ -336,7 +347,7 @@ static int param_set_battery_status(const char *key,
                                        const struct kernel_param *kp)
 {
        battery_status = map_get_value(map_status, key, battery_status);
-       signal_power_supply_changed(&test_power_supplies[1]);
+       signal_power_supply_changed(&test_power_supplies[TEST_BATTERY]);
        return 0;
 }
 
@@ -350,7 +361,7 @@ static int param_set_battery_health(const char *key,
                                        const struct kernel_param *kp)
 {
        battery_health = map_get_value(map_health, key, battery_health);
-       signal_power_supply_changed(&test_power_supplies[1]);
+       signal_power_supply_changed(&test_power_supplies[TEST_BATTERY]);
        return 0;
 }
 
@@ -364,7 +375,7 @@ static int param_set_battery_present(const char *key,
                                        const struct kernel_param *kp)
 {
        battery_present = map_get_value(map_present, key, battery_present);
-       signal_power_supply_changed(&test_power_supplies[0]);
+       signal_power_supply_changed(&test_power_supplies[TEST_AC]);
        return 0;
 }
 
@@ -380,7 +391,7 @@ static int param_set_battery_technology(const char *key,
 {
        battery_technology = map_get_value(map_technology, key,
                                                battery_technology);
-       signal_power_supply_changed(&test_power_supplies[1]);
+       signal_power_supply_changed(&test_power_supplies[TEST_BATTERY]);
        return 0;
 }
 
@@ -401,7 +412,7 @@ static int param_set_battery_capacity(const char *key,
                return -EINVAL;
 
        battery_capacity = tmp;
-       signal_power_supply_changed(&test_power_supplies[1]);
+       signal_power_supply_changed(&test_power_supplies[TEST_BATTERY]);
        return 0;
 }
 
@@ -416,7 +427,7 @@ static int param_set_battery_voltage(const char *key,
                return -EINVAL;
 
        battery_voltage = tmp;
-       signal_power_supply_changed(&test_power_supplies[1]);
+       signal_power_supply_changed(&test_power_supplies[TEST_BATTERY]);
        return 0;
 }