diff mbox series

power: remove unneeded semicolon

Message ID 20200115134010.60385-1-chenzhou10@huawei.com (mailing list archive)
State Not Applicable, archived
Headers show
Series power: remove unneeded semicolon | expand

Commit Message

chenzhou Jan. 15, 2020, 1:40 p.m. UTC
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(-)

Comments

Sebastian Reichel Jan. 17, 2020, 1:16 a.m. UTC | #1
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
>
diff mbox series

Patch

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;
 }