Lines Matching refs:demo
46 There is a uclass called 'demo'. This uclass handles
53 The demo class is pretty simple, but not trivial. The intention is that it
61 =>demo hello 1
63 =>demo status 2
65 =>demo hello 2
72 =>demo status 2
74 =>demo hello 4 ^
81 =>demo status 4
228 Let's start at the top. The demo command is in common/cmd_demo.c. It does
235 UCLASS_DEMO means the class of devices which implement 'demo'. Other
240 This function looks up a device for the demo uclass. Given a device
250 This function is in the demo uclass. It takes care of calling the 'hello'
254 The code for demo_hello() is in drivers/demo/demo-uclass.c:
267 in drivers/demo/demo-simple.c:
288 drivers/demo/demo-shape.c):
377 For an example of how it can be compiled in, see demo-pdata.c which
413 compatible = "demo-shape";
456 The demo uclass is declared like this:
458 U_BOOT_CLASS(demo) = {