diff options
author | Simon Glass <sjg@chromium.org> | 2020-12-03 16:55:22 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2020-12-13 16:51:09 -0700 |
commit | b012ff1f1b0d662587dcf8707fe7cbf1c1f35d2f (patch) | |
tree | 1e304c0d3f3a1a7598d6e35814d1ecd8cd8c6447 /drivers/misc | |
parent | d1998a9fde0a917d6496299f6a97b6bccfdc6724 (diff) | |
download | u-boot-b012ff1f1b0d662587dcf8707fe7cbf1c1f35d2f.tar.gz u-boot-b012ff1f1b0d662587dcf8707fe7cbf1c1f35d2f.tar.bz2 u-boot-b012ff1f1b0d662587dcf8707fe7cbf1c1f35d2f.zip |
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 <sjg@chromium.org>
Diffstat (limited to 'drivers/misc')
-rw-r--r-- | drivers/misc/p2sb-uclass.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/misc/p2sb-uclass.c b/drivers/misc/p2sb-uclass.c index ce5630fd3e..3267e50a31 100644 --- a/drivers/misc/p2sb-uclass.c +++ b/drivers/misc/p2sb-uclass.c @@ -224,6 +224,5 @@ UCLASS_DRIVER(p2sb) = { .per_device_auto = sizeof(struct p2sb_uc_priv), .post_bind = p2sb_post_bind, .child_post_bind = p2sb_child_post_bind, - .per_child_plat_auto = - sizeof(struct p2sb_child_platdata), + .per_child_plat_auto = sizeof(struct p2sb_child_platdata), }; |