public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH -next v2] i2c: designware: remove unneeded semicolon
@ 2022-02-14  9:00 Yang Li
  2022-02-14 12:22 ` Jan Dąbroś
  0 siblings, 1 reply; 2+ messages in thread
From: Yang Li @ 2022-02-14  9:00 UTC (permalink / raw)
  To: jarkko.nikula, jsd
  Cc: andriy.shevchenko, mika.westerberg, linux-i2c, linux-kernel,
	Yang Li, Abaci Robot

Eliminate the following coccicheck warning:
./drivers/i2c/busses/i2c-designware-amdpsp.c:172:2-3: Unneeded semicolon
./drivers/i2c/busses/i2c-designware-amdpsp.c:245:2-3: Unneeded semicolon

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
---

--Changes in v2:
  According to Jan's suggestion
  Fix the same problem in check_i2c_req_sts() function.

 drivers/i2c/busses/i2c-designware-amdpsp.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/i2c/busses/i2c-designware-amdpsp.c b/drivers/i2c/busses/i2c-designware-amdpsp.c
index 752e0024db03..9d37becbd846 100644
--- a/drivers/i2c/busses/i2c-designware-amdpsp.c
+++ b/drivers/i2c/busses/i2c-designware-amdpsp.c
@@ -172,7 +172,7 @@ static int check_i2c_req_sts(struct psp_i2c_req *req)
 	case PSP_I2C_REQ_STS_INV_PARAM:
 	default:
 		return -EIO;
-	};
+	}
 }
 
 static int psp_send_check_i2c_req(struct psp_i2c_req *req)
@@ -245,7 +245,7 @@ static int psp_acquire_i2c_bus(void)
 	if (psp_i2c_access_count) {
 		psp_i2c_access_count++;
 		goto cleanup;
-	};
+	}
 
 	status = psp_send_i2c_req(PSP_I2C_REQ_ACQUIRE);
 	if (status) {
-- 
2.20.1.7.g153144c


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH -next v2] i2c: designware: remove unneeded semicolon
  2022-02-14  9:00 [PATCH -next v2] i2c: designware: remove unneeded semicolon Yang Li
@ 2022-02-14 12:22 ` Jan Dąbroś
  0 siblings, 0 replies; 2+ messages in thread
From: Jan Dąbroś @ 2022-02-14 12:22 UTC (permalink / raw)
  To: Yang Li
  Cc: Jarkko Nikula, Andy Shevchenko, Mika Westerberg, linux-i2c,
	Linux Kernel Mailing List, Abaci Robot

pon., 14 lut 2022 o 10:00 Yang Li <yang.lee@linux.alibaba.com> napisał(a):
>
> Eliminate the following coccicheck warning:

nit: warnings

> ./drivers/i2c/busses/i2c-designware-amdpsp.c:172:2-3: Unneeded semicolon
> ./drivers/i2c/busses/i2c-designware-amdpsp.c:245:2-3: Unneeded semicolon
>
> Reported-by: Abaci Robot <abaci@linux.alibaba.com>
> Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>

Beside a nit above:
Reviewed-by: Jan Dabros <jsd@semihalf.com>

Best Regards,
Jan

> ---
>
> --Changes in v2:
>   According to Jan's suggestion
>   Fix the same problem in check_i2c_req_sts() function.
>
>  drivers/i2c/busses/i2c-designware-amdpsp.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/i2c/busses/i2c-designware-amdpsp.c b/drivers/i2c/busses/i2c-designware-amdpsp.c
> index 752e0024db03..9d37becbd846 100644
> --- a/drivers/i2c/busses/i2c-designware-amdpsp.c
> +++ b/drivers/i2c/busses/i2c-designware-amdpsp.c
> @@ -172,7 +172,7 @@ static int check_i2c_req_sts(struct psp_i2c_req *req)
>         case PSP_I2C_REQ_STS_INV_PARAM:
>         default:
>                 return -EIO;
> -       };
> +       }
>  }
>
>  static int psp_send_check_i2c_req(struct psp_i2c_req *req)
> @@ -245,7 +245,7 @@ static int psp_acquire_i2c_bus(void)
>         if (psp_i2c_access_count) {
>                 psp_i2c_access_count++;
>                 goto cleanup;
> -       };
> +       }
>
>         status = psp_send_i2c_req(PSP_I2C_REQ_ACQUIRE);
>         if (status) {
> --
> 2.20.1.7.g153144c
>

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-02-14 12:23 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-02-14  9:00 [PATCH -next v2] i2c: designware: remove unneeded semicolon Yang Li
2022-02-14 12:22 ` Jan Dąbroś

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox