devm_ioremap_resource() prints error message in itself. Remove the
dev_err call to avoid redundant error message.
Signed-off-by: Muhammad Usama Anjum <musamaanjum@gmail.com>
Link: https://lore.kernel.org/r/20210407161202.GA1505056@LEGION
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
        fifo->base_addr = devm_ioremap_resource(fifo->dt_device, r_mem);
        if (IS_ERR(fifo->base_addr)) {
                rc = PTR_ERR(fifo->base_addr);
-               dev_err(fifo->dt_device, "can't remap IO resource (%d)\n", rc);
                goto err_initial;
        }