diff options
| author | Simon Glass <[email protected]> | 2020-12-03 16:55:22 -0700 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2020-12-13 16:51:09 -0700 |
| commit | b012ff1f1b0d662587dcf8707fe7cbf1c1f35d2f (patch) | |
| tree | 1e304c0d3f3a1a7598d6e35814d1ecd8cd8c6447 /drivers/usb | |
| parent | d1998a9fde0a917d6496299f6a97b6bccfdc6724 (diff) | |
dm: treewide: Update 'auto' declarations to be on one line
Fix up the code style for those declarations that should now fit onto one
line, which is all of them that currently do not.
This is needed for dtoc to detect the structs correctly, at present.
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'drivers/usb')
| -rw-r--r-- | drivers/usb/emul/sandbox_hub.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/usb/emul/sandbox_hub.c b/drivers/usb/emul/sandbox_hub.c index 91158e5c6d3..396923ac782 100644 --- a/drivers/usb/emul/sandbox_hub.c +++ b/drivers/usb/emul/sandbox_hub.c @@ -329,7 +329,6 @@ U_BOOT_DRIVER(usb_sandbox_hub) = { .bind = sandbox_hub_bind, .ops = &sandbox_usb_hub_ops, .priv_auto = sizeof(struct sandbox_hub_priv), - .per_child_plat_auto = - sizeof(struct sandbox_hub_platdata), + .per_child_plat_auto = sizeof(struct sandbox_hub_platdata), .child_post_bind = sandbox_child_post_bind, }; |
