summaryrefslogtreecommitdiff
path: root/include/led.h
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2017-04-10 11:34:53 -0600
committerSimon Glass <sjg@chromium.org>2017-04-14 19:38:57 -0600
commit56e19871dc2a05aa5508ea51af35df59bbdb6cf5 (patch)
tree99118e7377eb1acb9f4d8fd4075b00a88a41e416 /include/led.h
parent9b36f748162e3d09b16df5b7c670d183292ecdc1 (diff)
dm: led: Rename struct led_uclass_plat
These structures are normally named with 'uc' instead of 'uclass'. Change this one for consistency. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Ziping Chen <techping.chan@gmail.com>
Diffstat (limited to 'include/led.h')
-rw-r--r--include/led.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/led.h b/include/led.h
index b929d0ca3c..a856b3d9ff 100644
--- a/include/led.h
+++ b/include/led.h
@@ -9,11 +9,11 @@
#define __LED_H
/**
- * struct led_uclass_plat - Platform data the uclass stores about each device
+ * struct led_uc_plat - Platform data the uclass stores about each device
*
* @label: LED label
*/
-struct led_uclass_plat {
+struct led_uc_plat {
const char *label;
};