dm: treewide: Rename ofdata_to_platdata() to of_to_plat()
This name is far too long. Rename it to remove the 'data' bits. This makes it consistent with the platdata->plat rename. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -533,7 +533,7 @@ enum {
|
||||
#endif
|
||||
|
||||
#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
int ns16550_serial_ofdata_to_platdata(struct udevice *dev)
|
||||
int ns16550_serial_of_to_plat(struct udevice *dev)
|
||||
{
|
||||
struct ns16550_platdata *plat = dev->plat;
|
||||
const u32 port_type = dev_get_driver_data(dev);
|
||||
@@ -610,7 +610,7 @@ U_BOOT_DRIVER(ns16550_serial) = {
|
||||
.id = UCLASS_SERIAL,
|
||||
#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
|
||||
.of_match = ns16550_serial_ids,
|
||||
.ofdata_to_platdata = ns16550_serial_ofdata_to_platdata,
|
||||
.of_to_plat = ns16550_serial_of_to_plat,
|
||||
.plat_auto = sizeof(struct ns16550_platdata),
|
||||
#endif
|
||||
.priv_auto = sizeof(struct NS16550),
|
||||
|
||||
Reference in New Issue
Block a user