From: Alexander Graf Date: Thu, 25 Jan 2018 11:05:49 +0000 (+0100) Subject: pl01x: Convert to dev_read X-Git-Tag: v2018.03-rc1~22 X-Git-Url: https://git.sur5r.net/?p=u-boot;a=commitdiff_plain;h=b31116308c6ebf4fcebacac8c346f603257547e5 pl01x: Convert to dev_read The fdtdec API is deprecated, convert the pl010 and pl011 devices to use the dev_read API instead. Signed-off-by: Alexander Graf --- diff --git a/drivers/serial/serial_pl01x.c b/drivers/serial/serial_pl01x.c index 4ec0f29c42..2cbc84c1b4 100644 --- a/drivers/serial/serial_pl01x.c +++ b/drivers/serial/serial_pl01x.c @@ -20,7 +20,6 @@ #include #include #include "serial_pl01x_internal.h" -#include DECLARE_GLOBAL_DATA_PTR; @@ -354,11 +353,10 @@ static int pl01x_serial_ofdata_to_platdata(struct udevice *dev) return -EINVAL; plat->base = addr; - plat->clock = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev), "clock", - 1); + plat->clock = dev_read_u32_default(dev, "clock", 1); plat->type = dev_get_driver_data(dev); - plat->skip_init = fdtdec_get_bool(gd->fdt_blob, dev_of_offset(dev), - "skip-init"); + plat->skip_init = dev_read_bool(dev, "skip-init"); + return 0; } #endif