diff options
Diffstat (limited to 'drivers/misc/test_drv.c')
-rw-r--r-- | drivers/misc/test_drv.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/misc/test_drv.c b/drivers/misc/test_drv.c index b6df118903..927618256f 100644 --- a/drivers/misc/test_drv.c +++ b/drivers/misc/test_drv.c @@ -108,7 +108,9 @@ UCLASS_DRIVER(testbus) = { .child_pre_probe = testbus_child_pre_probe_uclass, .child_post_probe = testbus_child_post_probe_uclass, - /* This is for dtoc testing only */ + .per_device_auto = sizeof(struct dm_test_uclass_priv), + + /* Note: this is for dtoc testing as well as tags*/ .per_device_plat_auto = sizeof(struct dm_test_uclass_plat), }; |