lkml.org 
[lkml]   [2019]   [Mar]   [14]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH v2 04/45] drivers: tty: serial: amba-pl010: use devm_ioremap_resource()
    Date
    Instead of fetching out data from a struct resource for passing
    it to devm_ioremap(), directly use devm_ioremap_resource()

    Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
    ---
    drivers/tty/serial/amba-pl010.c | 3 +--
    1 file changed, 1 insertion(+), 2 deletions(-)

    diff --git a/drivers/tty/serial/amba-pl010.c b/drivers/tty/serial/amba-pl010.c
    index 2c37d11..109b8df 100644
    --- a/drivers/tty/serial/amba-pl010.c
    +++ b/drivers/tty/serial/amba-pl010.c
    @@ -713,8 +713,7 @@ static int pl010_probe(struct amba_device *dev, const struct amba_id *id)
    if (!uap)
    return -ENOMEM;

    - base = devm_ioremap(&dev->dev, dev->res.start,
    - resource_size(&dev->res));
    + base = devm_ioremap_resource(&dev->dev, &dev->res);
    if (!base)
    return -ENOMEM;

    --
    1.9.1
    \
     
     \ /
      Last update: 2019-03-14 23:35    [W:4.144 / U:0.096 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site