fpga manager: xilinx-spi: remove final dot from dev_err() strings
authorLuca Ceresoli <luca@lucaceresoli.net>
Sun, 30 Aug 2020 16:38:47 +0000 (18:38 +0200)
committerMoritz Fischer <mdf@kernel.org>
Mon, 31 Aug 2020 00:04:18 +0000 (17:04 -0700)
Most dev_err messages in this file have no final dot. Remove the only two
exceptions to make them consistent.

Reviewed-by: Tom Rix <trix@redhat.com>
Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net>
Signed-off-by: Moritz Fischer <mdf@kernel.org>
drivers/fpga/xilinx-spi.c

index 502fae0..01f4941 100644 (file)
@@ -77,7 +77,7 @@ static int xilinx_spi_write_init(struct fpga_manager *mgr,
        int err;
 
        if (info->flags & FPGA_MGR_PARTIAL_RECONFIG) {
-               dev_err(&mgr->dev, "Partial reconfiguration not supported.\n");
+               dev_err(&mgr->dev, "Partial reconfiguration not supported\n");
                return -EINVAL;
        }
 
@@ -169,7 +169,7 @@ static int xilinx_spi_write_complete(struct fpga_manager *mgr,
                        return xilinx_spi_apply_cclk_cycles(conf);
        }
 
-       dev_err(&mgr->dev, "Timeout after config data transfer.\n");
+       dev_err(&mgr->dev, "Timeout after config data transfer\n");
        return -ETIMEDOUT;
 }