diff options
author | Colin Ian King <[email protected]> | 2022-06-24 09:14:09 +0100 |
---|---|---|
committer | Xu Yilun <[email protected]> | 2022-06-29 15:18:18 +0800 |
commit | ee794221a6f66d054beb1cbc151d8de4083e634e (patch) | |
tree | df8a2fee747238a39437eba00ae36d8138282ee7 /drivers/fpga/fpga-mgr.c | |
parent | e2c003bc6488704b28d59087d097863ea69a710d (diff) |
fpga: fpga-mgr: Fix spelling mistake "bitsream" -> "bitstream"
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 <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
[[email protected]: add the Fixes tag]
Signed-off-by: Xu Yilun <[email protected]>
Diffstat (limited to 'drivers/fpga/fpga-mgr.c')
-rw-r--r-- | drivers/fpga/fpga-mgr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/fpga/fpga-mgr.c b/drivers/fpga/fpga-mgr.c index a0fa0a2cb8af..8efa67620e21 100644 --- a/drivers/fpga/fpga-mgr.c +++ b/drivers/fpga/fpga-mgr.c @@ -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; } |