2019-08-19 09:42:44

by Colin King

[permalink] [raw]
Subject: [PATCH][next] misc: xilinx_sdfec: fix spelling mistake: "Schdule" -> "Schedule"

From: Colin Ian King <[email protected]>

There is a spelling mistake in a dev_dbg message, fix it.

Signed-off-by: Colin Ian King <[email protected]>
---
drivers/misc/xilinx_sdfec.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/misc/xilinx_sdfec.c b/drivers/misc/xilinx_sdfec.c
index 912e939dec62..b25c58ee618c 100644
--- a/drivers/misc/xilinx_sdfec.c
+++ b/drivers/misc/xilinx_sdfec.c
@@ -553,7 +553,7 @@ static int xsdfec_reg2_write(struct xsdfec_dev *xsdfec, u32 nlayers, u32 nmqc,
XSDFEC_REG2_NO_FINAL_PARITY_MASK);
if (max_schedule &
~(XSDFEC_REG2_MAX_SCHEDULE_MASK >> XSDFEC_REG2_MAX_SCHEDULE_LSB))
- dev_dbg(xsdfec->dev, "Max Schdule exceeds 2 bits");
+ dev_dbg(xsdfec->dev, "Max Schedule exceeds 2 bits");
max_schedule = ((max_schedule << XSDFEC_REG2_MAX_SCHEDULE_LSB) &
XSDFEC_REG2_MAX_SCHEDULE_MASK);

--
2.20.1


2019-08-23 12:10:56

by Dragan Cvetic

[permalink] [raw]
Subject: RE: [PATCH][next] misc: xilinx_sdfec: fix spelling mistake: "Schdule" -> "Schedule"

Hi Colin,

> -----Original Message-----
> From: Colin King [mailto:[email protected]]
> Sent: Monday 19 August 2019 10:42
> To: Derek Kiernan <[email protected]>; Dragan Cvetic <[email protected]>; Arnd Bergmann <[email protected]>; Greg Kroah-
> Hartman <[email protected]>; Michal Simek <[email protected]>; [email protected]
> Cc: [email protected]; [email protected]
> Subject: [PATCH][next] misc: xilinx_sdfec: fix spelling mistake: "Schdule" -> "Schedule"
>
> From: Colin Ian King <[email protected]>
>
> There is a spelling mistake in a dev_dbg message, fix it.
>
> Signed-off-by: Colin Ian King <[email protected]>
> ---
> drivers/misc/xilinx_sdfec.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/misc/xilinx_sdfec.c b/drivers/misc/xilinx_sdfec.c
> index 912e939dec62..b25c58ee618c 100644
> --- a/drivers/misc/xilinx_sdfec.c
> +++ b/drivers/misc/xilinx_sdfec.c
> @@ -553,7 +553,7 @@ static int xsdfec_reg2_write(struct xsdfec_dev *xsdfec, u32 nlayers, u32 nmqc,
> XSDFEC_REG2_NO_FINAL_PARITY_MASK);
> if (max_schedule &
> ~(XSDFEC_REG2_MAX_SCHEDULE_MASK >> XSDFEC_REG2_MAX_SCHEDULE_LSB))
> - dev_dbg(xsdfec->dev, "Max Schdule exceeds 2 bits");
> + dev_dbg(xsdfec->dev, "Max Schedule exceeds 2 bits");
> max_schedule = ((max_schedule << XSDFEC_REG2_MAX_SCHEDULE_LSB) &
> XSDFEC_REG2_MAX_SCHEDULE_MASK);
>
> --
> 2.20.1

Reviewed-by: Dragan Cvetic <[email protected]>

Thanks,
Dragan