summaryrefslogtreecommitdiffstats
path: root/drivers/misc
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-12-03 16:55:22 -0700
committerSimon Glass <sjg@chromium.org>2020-12-13 16:51:09 -0700
commitb012ff1f1b0d662587dcf8707fe7cbf1c1f35d2f (patch)
tree1e304c0d3f3a1a7598d6e35814d1ecd8cd8c6447 /drivers/misc
parentd1998a9fde0a917d6496299f6a97b6bccfdc6724 (diff)
downloadu-boot-b012ff1f1b0d662587dcf8707fe7cbf1c1f35d2f.tar.gz
u-boot-b012ff1f1b0d662587dcf8707fe7cbf1c1f35d2f.tar.xz
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.c3
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),
};