[PATCH] pmdomain: qcom: rpmpd: drop stray semicolon

Gabor Juhos posted 1 patch 2 weeks, 2 days ago
drivers/pmdomain/qcom/rpmpd.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] pmdomain: qcom: rpmpd: drop stray semicolon
Posted by Gabor Juhos 2 weeks, 2 days ago
Drop the unnecessary semicolon after the rpmpd_send_corner()
function's declaration.

Signed-off-by: Gabor Juhos <j4g8y7@gmail.com>
---
 drivers/pmdomain/qcom/rpmpd.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/pmdomain/qcom/rpmpd.c b/drivers/pmdomain/qcom/rpmpd.c
index f8580ec0f73785544aeb6f686438f39b477d134d..a7b311f966a04210dbb499066cd1105e2c621cd5 100644
--- a/drivers/pmdomain/qcom/rpmpd.c
+++ b/drivers/pmdomain/qcom/rpmpd.c
@@ -978,7 +978,7 @@ static int rpmpd_send_corner(struct rpmpd *pd, int state, unsigned int corner)
 
 	return qcom_rpm_smd_write(rpmpd_smd_rpm, state, pd->res_type, pd->res_id,
 				  &req, sizeof(req));
-};
+}
 
 static void to_active_sleep(struct rpmpd *pd, unsigned int corner,
 			    unsigned int *active, unsigned int *sleep)

---
base-commit: 95fad101a21d31b4facd1b9e0713bba1c517db6e
change-id: 20260121-qcom-rpmpd-semicolon-1f985a101e0b

Best regards,
-- 
Gabor Juhos <j4g8y7@gmail.com>
Re: [PATCH] pmdomain: qcom: rpmpd: drop stray semicolon
Posted by Ulf Hansson 1 week, 3 days ago
On Wed, 21 Jan 2026 at 17:18, Gabor Juhos <j4g8y7@gmail.com> wrote:
>
> Drop the unnecessary semicolon after the rpmpd_send_corner()
> function's declaration.
>
> Signed-off-by: Gabor Juhos <j4g8y7@gmail.com>

Applied for next, thanks!

Kind regards
Uffe


> ---
>  drivers/pmdomain/qcom/rpmpd.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/pmdomain/qcom/rpmpd.c b/drivers/pmdomain/qcom/rpmpd.c
> index f8580ec0f73785544aeb6f686438f39b477d134d..a7b311f966a04210dbb499066cd1105e2c621cd5 100644
> --- a/drivers/pmdomain/qcom/rpmpd.c
> +++ b/drivers/pmdomain/qcom/rpmpd.c
> @@ -978,7 +978,7 @@ static int rpmpd_send_corner(struct rpmpd *pd, int state, unsigned int corner)
>
>         return qcom_rpm_smd_write(rpmpd_smd_rpm, state, pd->res_type, pd->res_id,
>                                   &req, sizeof(req));
> -};
> +}
>
>  static void to_active_sleep(struct rpmpd *pd, unsigned int corner,
>                             unsigned int *active, unsigned int *sleep)
>
> ---
> base-commit: 95fad101a21d31b4facd1b9e0713bba1c517db6e
> change-id: 20260121-qcom-rpmpd-semicolon-1f985a101e0b
>
> Best regards,
> --
> Gabor Juhos <j4g8y7@gmail.com>
>
Re: [PATCH] pmdomain: qcom: rpmpd: drop stray semicolon
Posted by Konrad Dybcio 2 weeks, 2 days ago
On 1/21/26 5:18 PM, Gabor Juhos wrote:
> Drop the unnecessary semicolon after the rpmpd_send_corner()
> function's declaration.
> 
> Signed-off-by: Gabor Juhos <j4g8y7@gmail.com>
> ---

Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>

Konrad