From: Simon Glass Date: Wed, 23 Jul 2014 12:55:24 +0000 (-0600) Subject: dm: Give the demo uclass a name X-Git-Tag: v2014.10-rc1~47 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=74f96dada18edd3ebd4a1c5d39edc806a17eefcc;p=u-boot dm: Give the demo uclass a name Uclasses should be named, so add a name for the demo uclass. Signed-off-by: Simon Glass --- diff --git a/drivers/demo/demo-uclass.c b/drivers/demo/demo-uclass.c index 636fd8831f..f6510d602c 100644 --- a/drivers/demo/demo-uclass.c +++ b/drivers/demo/demo-uclass.c @@ -19,6 +19,7 @@ DECLARE_GLOBAL_DATA_PTR; UCLASS_DRIVER(demo) = { + .name = "demo", .id = UCLASS_DEMO, };