diff options
author | Michael Ellerman <mpe@ellerman.id.au> | 2015-08-22 09:33:55 +1000 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2015-08-22 21:09:12 +1000 |
commit | 5d53be7d8c7ccf8eec1ce66c6b3573c01d16b755 (patch) | |
tree | 0976fb382b1cda4158129a37716ea8d0a16d45f8 /drivers/leds | |
parent | e72bb8a5a884d022231149d407653923a1d79e53 (diff) | |
download | linux-5d53be7d8c7ccf8eec1ce66c6b3573c01d16b755.tar.gz linux-5d53be7d8c7ccf8eec1ce66c6b3573c01d16b755.tar.bz2 linux-5d53be7d8c7ccf8eec1ce66c6b3573c01d16b755.zip |
powerpc/powernv: Fix mis-merge of OPAL support for LEDS driver
When I merged the OPAL support for the powernv LEDS driver I missed a
hunk.
This is slightly modified from the original patch, as the original added
code to opal-api.h which is not in the skiboot version, which is
discouraged.
Instead those values are moved into the driver, which is the only place
they are used.
Fixes: 8a8d91817aec ("powerpc/powernv: Add OPAL interfaces for accessing and modifying system LED states")
Reviewed-by: Vasant Hegde <hegdevasant@linux.vnet.ibm.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'drivers/leds')
-rw-r--r-- | drivers/leds/leds-powernv.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/leds/leds-powernv.c b/drivers/leds/leds-powernv.c index a2fea192573b..2c5c5b12ab64 100644 --- a/drivers/leds/leds-powernv.c +++ b/drivers/leds/leds-powernv.c @@ -27,9 +27,9 @@ struct led_type_map { const char *desc; }; static const struct led_type_map led_type_map[] = { - {OPAL_SLOT_LED_TYPE_ID, POWERNV_LED_TYPE_IDENTIFY}, - {OPAL_SLOT_LED_TYPE_FAULT, POWERNV_LED_TYPE_FAULT}, - {OPAL_SLOT_LED_TYPE_ATTN, POWERNV_LED_TYPE_ATTENTION}, + {OPAL_SLOT_LED_TYPE_ID, "identify"}, + {OPAL_SLOT_LED_TYPE_FAULT, "fault"}, + {OPAL_SLOT_LED_TYPE_ATTN, "attention"}, {-1, NULL}, }; |