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: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=74f96dada18edd3ebd4a1c5d39edc806a17eefcc;p=pandora-u-boot.git 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 636fd8831f5..f6510d602c8 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, };