There is an spelling mistake in a dev_err message. Fix it. Signed-off-by: Colin Ian King <colin.i.king@xxxxxxxxx> --- drivers/fpga/fpga-mgr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.35.3