1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-01 08:42:12 +02:00

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>
This commit is contained in:
Simon Glass
2017-04-10 11:34:53 -06:00
parent 9b36f74816
commit 56e19871dc
3 changed files with 6 additions and 6 deletions

View File

@@ -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;
};