linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] power: remove unneeded semicolon
@ 2020-01-15 13:40 Chen Zhou
  2020-01-17  1:16 ` Sebastian Reichel
  0 siblings, 1 reply; 2+ messages in thread
From: Chen Zhou @ 2020-01-15 13:40 UTC (permalink / raw)
  To: sre; +Cc: linux-pm, linux-kernel, chenzhou10

Fixes coccicheck warning:

./drivers/power/supply/ipaq_micro_battery.c:188:2-3: Unneeded semicolon
./drivers/power/supply/ipaq_micro_battery.c:152:3-4: Unneeded semicolon
./drivers/power/supply/ipaq_micro_battery.c:171:2-3: Unneeded semicolon

Signed-off-by: Chen Zhou <chenzhou10@huawei.com>
---
 drivers/power/supply/ipaq_micro_battery.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/power/supply/ipaq_micro_battery.c b/drivers/power/supply/ipaq_micro_battery.c
index 03592ce..192d9db 100644
--- a/drivers/power/supply/ipaq_micro_battery.c
+++ b/drivers/power/supply/ipaq_micro_battery.c
@@ -149,7 +149,7 @@ static int micro_batt_get_property(struct power_supply *b,
 		default:
 			val->intval = POWER_SUPPLY_TECHNOLOGY_UNKNOWN;
 			break;
-		};
+		}
 		break;
 	case POWER_SUPPLY_PROP_STATUS:
 		val->intval = get_status(b);
@@ -168,7 +168,7 @@ static int micro_batt_get_property(struct power_supply *b,
 		break;
 	default:
 		return -EINVAL;
-	};
+	}
 
 	return 0;
 }
@@ -185,7 +185,7 @@ static int micro_ac_get_property(struct power_supply *b,
 		break;
 	default:
 		return -EINVAL;
-	};
+	}
 
 	return 0;
 }
-- 
2.7.4


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

* Re: [PATCH] power: remove unneeded semicolon
  2020-01-15 13:40 [PATCH] power: remove unneeded semicolon Chen Zhou
@ 2020-01-17  1:16 ` Sebastian Reichel
  0 siblings, 0 replies; 2+ messages in thread
From: Sebastian Reichel @ 2020-01-17  1:16 UTC (permalink / raw)
  To: Chen Zhou; +Cc: linux-pm, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1472 bytes --]

Hi,

On Wed, Jan 15, 2020 at 09:40:10PM +0800, Chen Zhou wrote:
> Fixes coccicheck warning:
> 
> ./drivers/power/supply/ipaq_micro_battery.c:188:2-3: Unneeded semicolon
> ./drivers/power/supply/ipaq_micro_battery.c:152:3-4: Unneeded semicolon
> ./drivers/power/supply/ipaq_micro_battery.c:171:2-3: Unneeded semicolon
> 
> Signed-off-by: Chen Zhou <chenzhou10@huawei.com>
> ---

Thanks, I fixed the patch subject and applied it to power-supply's
for-next branch.

-- Sebastian

>  drivers/power/supply/ipaq_micro_battery.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/power/supply/ipaq_micro_battery.c b/drivers/power/supply/ipaq_micro_battery.c
> index 03592ce..192d9db 100644
> --- a/drivers/power/supply/ipaq_micro_battery.c
> +++ b/drivers/power/supply/ipaq_micro_battery.c
> @@ -149,7 +149,7 @@ static int micro_batt_get_property(struct power_supply *b,
>  		default:
>  			val->intval = POWER_SUPPLY_TECHNOLOGY_UNKNOWN;
>  			break;
> -		};
> +		}
>  		break;
>  	case POWER_SUPPLY_PROP_STATUS:
>  		val->intval = get_status(b);
> @@ -168,7 +168,7 @@ static int micro_batt_get_property(struct power_supply *b,
>  		break;
>  	default:
>  		return -EINVAL;
> -	};
> +	}
>  
>  	return 0;
>  }
> @@ -185,7 +185,7 @@ static int micro_ac_get_property(struct power_supply *b,
>  		break;
>  	default:
>  		return -EINVAL;
> -	};
> +	}
>  
>  	return 0;
>  }
> -- 
> 2.7.4
> 

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

end of thread, other threads:[~2020-01-17  1:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-15 13:40 [PATCH] power: remove unneeded semicolon Chen Zhou
2020-01-17  1:16 ` Sebastian Reichel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).