fpga: fpga-mgr: Fix spelling mistake "bitsream" -> "bitstream"
authorColin Ian King <colin.i.king@gmail.com>
Fri, 24 Jun 2022 08:14:09 +0000 (09:14 +0100)
committerXu Yilun <yilun.xu@intel.com>
Wed, 29 Jun 2022 07:18:18 +0000 (15:18 +0800)
There is an spelling mistake in a dev_err message. Fix it.

Fixes: 3cc624beba63 ("fpga: fpga-mgr: support bitstream offset in image buffer")
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Link: https://lore.kernel.org/r/20220624081409.14760-1-colin.i.king@gmail.com
[yilun.xu@intel.com: add the Fixes tag]
Signed-off-by: Xu Yilun <yilun.xu@intel.com>
drivers/fpga/fpga-mgr.c

index a0fa0a2..8efa676 100644 (file)
@@ -158,7 +158,7 @@ static int fpga_mgr_parse_header_mapped(struct fpga_manager *mgr,
        ret = fpga_mgr_parse_header(mgr, info, buf, count);
 
        if (info->header_size + info->data_size > count) {
-               dev_err(&mgr->dev, "Bitsream data outruns FPGA image\n");
+               dev_err(&mgr->dev, "Bitstream data outruns FPGA image\n");
                ret = -EINVAL;
        }