diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/dm/bus.c | 3 | ||||
-rw-r--r-- | test/dm/test-uclass.c | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/test/dm/bus.c b/test/dm/bus.c index 0e83dc14d7d..9e81b1da1f0 100644 --- a/test/dm/bus.c +++ b/test/dm/bus.c @@ -103,8 +103,7 @@ U_BOOT_DRIVER(testbus_drv) = { .priv_auto = sizeof(struct dm_test_priv), .plat_auto = sizeof(struct dm_test_pdata), .per_child_auto = sizeof(struct dm_test_parent_data), - .per_child_plat_auto = - sizeof(struct dm_test_parent_plat), + .per_child_plat_auto = sizeof(struct dm_test_parent_plat), .child_pre_probe = testbus_child_pre_probe, .child_post_remove = testbus_child_post_remove, }; diff --git a/test/dm/test-uclass.c b/test/dm/test-uclass.c index 378fc1e536a..3ab4a23649e 100644 --- a/test/dm/test-uclass.c +++ b/test/dm/test-uclass.c @@ -126,6 +126,5 @@ UCLASS_DRIVER(test) = { .destroy = test_destroy, .priv_auto = sizeof(struct dm_test_uclass_priv), .per_device_auto = sizeof(struct dm_test_uclass_perdev_priv), - .per_device_plat_auto = - sizeof(struct dm_test_perdev_uc_pdata), + .per_device_plat_auto = sizeof(struct dm_test_perdev_uc_pdata), }; |