diff options
author | Simon Glass <sjg@chromium.org> | 2017-04-10 11:34:53 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2017-04-14 19:38:57 -0600 |
commit | 56e19871dc2a05aa5508ea51af35df59bbdb6cf5 (patch) | |
tree | 99118e7377eb1acb9f4d8fd4075b00a88a41e416 /include/led.h | |
parent | 9b36f748162e3d09b16df5b7c670d183292ecdc1 (diff) | |
download | u-boot-56e19871dc2a05aa5508ea51af35df59bbdb6cf5.tar.gz |
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.h | 4 |
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; }; |