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>
This commit is contained in:
parent
d1998a9fde
commit
b012ff1f1b
@ -198,8 +198,7 @@ U_BOOT_DRIVER(intel_p2sb) = {
|
||||
.ops = &p2sb_ops,
|
||||
.of_to_plat = p2sb_of_to_plat,
|
||||
.plat_auto = sizeof(struct p2sb_platdata),
|
||||
.per_child_plat_auto =
|
||||
sizeof(struct p2sb_child_platdata),
|
||||
.per_child_plat_auto = sizeof(struct p2sb_child_platdata),
|
||||
.child_post_bind = p2sb_child_post_bind,
|
||||
.flags = DM_FLAG_OS_PREPARE,
|
||||
};
|
||||
|
@ -64,8 +64,7 @@ int i2c_emul_find(struct udevice *dev, struct udevice **emulp)
|
||||
UCLASS_DRIVER(i2c_emul) = {
|
||||
.id = UCLASS_I2C_EMUL,
|
||||
.name = "i2c_emul",
|
||||
.per_device_plat_auto =
|
||||
sizeof(struct i2c_emul_uc_platdata),
|
||||
.per_device_plat_auto = sizeof(struct i2c_emul_uc_platdata),
|
||||
};
|
||||
|
||||
/*
|
||||
|
@ -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),
|
||||
};
|
||||
|
@ -1797,8 +1797,7 @@ UCLASS_DRIVER(pci) = {
|
||||
.post_probe = pci_uclass_post_probe,
|
||||
.child_post_bind = pci_uclass_child_post_bind,
|
||||
.per_device_auto = sizeof(struct pci_controller),
|
||||
.per_child_plat_auto =
|
||||
sizeof(struct pci_child_platdata),
|
||||
.per_child_plat_auto = sizeof(struct pci_child_platdata),
|
||||
};
|
||||
|
||||
static const struct dm_pci_ops pci_bridge_ops = {
|
||||
|
@ -132,6 +132,5 @@ U_BOOT_DRIVER(pci_sandbox) = {
|
||||
|
||||
/* Attach an emulator if we can */
|
||||
.child_post_bind = dm_scan_fdt_dev,
|
||||
.per_child_plat_auto =
|
||||
sizeof(struct pci_child_platdata),
|
||||
.per_child_plat_auto = sizeof(struct pci_child_platdata),
|
||||
};
|
||||
|
@ -500,6 +500,5 @@ UCLASS_DRIVER(regulator) = {
|
||||
.name = "regulator",
|
||||
.post_bind = regulator_post_bind,
|
||||
.pre_probe = regulator_pre_probe,
|
||||
.per_device_plat_auto =
|
||||
sizeof(struct dm_regulator_uclass_plat),
|
||||
.per_device_plat_auto = sizeof(struct dm_regulator_uclass_plat),
|
||||
};
|
||||
|
@ -210,8 +210,7 @@ UCLASS_DRIVER(rproc) = {
|
||||
.flags = DM_UC_FLAG_SEQ_ALIAS,
|
||||
.pre_probe = rproc_pre_probe,
|
||||
.post_probe = rproc_post_probe,
|
||||
.per_device_plat_auto =
|
||||
sizeof(struct dm_rproc_uclass_pdata),
|
||||
.per_device_plat_auto = sizeof(struct dm_rproc_uclass_pdata),
|
||||
};
|
||||
|
||||
/* Remoteproc subsystem access functions */
|
||||
|
@ -504,8 +504,7 @@ UCLASS_DRIVER(spi) = {
|
||||
.child_pre_probe = spi_child_pre_probe,
|
||||
.per_device_auto = sizeof(struct dm_spi_bus),
|
||||
.per_child_auto = sizeof(struct spi_slave),
|
||||
.per_child_plat_auto =
|
||||
sizeof(struct dm_spi_slave_platdata),
|
||||
.per_child_plat_auto = sizeof(struct dm_spi_slave_platdata),
|
||||
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
.child_post_bind = spi_child_post_bind,
|
||||
#endif
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -643,8 +643,7 @@ U_BOOT_DRIVER(nexell_display) = {
|
||||
.name = "nexell-display",
|
||||
.id = UCLASS_VIDEO,
|
||||
.of_match = nx_display_ids,
|
||||
.plat_auto =
|
||||
sizeof(struct nx_display_platdata),
|
||||
.plat_auto = sizeof(struct nx_display_platdata),
|
||||
.bind = nx_display_bind,
|
||||
.probe = nx_display_probe,
|
||||
.priv_auto = sizeof(struct nx_display_dev),
|
||||
|
@ -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,
|
||||
};
|
||||
|
@ -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),
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user