dm: serial: Adjust serial_getconfig() to use proper API

All driver-model functions should have a device as the first parameter.
Update this function accordingly.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
This commit is contained in:
Simon Glass
2018-12-28 14:23:08 -07:00
parent 0171f43204
commit 67d1b05130
4 changed files with 10 additions and 10 deletions

View File

@@ -294,16 +294,13 @@ void serial_setbrg(void)
ops->setbrg(gd->cur_serial_dev, gd->baudrate);
}
int serial_getconfig(uint *config)
int serial_getconfig(struct udevice *dev, uint *config)
{
struct dm_serial_ops *ops;
if (!gd->cur_serial_dev)
return 0;
ops = serial_get_ops(gd->cur_serial_dev);
ops = serial_get_ops(dev);
if (ops->getconfig)
return ops->getconfig(gd->cur_serial_dev, config);
return ops->getconfig(dev, config);
return 0;
}