Message ID | 20220302130832.1076437-1-colin.i.king@gmail.com (mailing list archive) |
---|---|
State | Handled Elsewhere, archived |
Headers | show |
Series | [next] power: supply: ab8500: fix a handful of spelling mistakes | expand |
Hi, On Wed, Mar 02, 2022 at 01:08:32PM +0000, Colin Ian King wrote: > There are a few spelling mistakes in comments and in a dev_err > error message. Fix them. > > Signed-off-by: Colin Ian King <colin.i.king@gmail.com> > --- Thanks, queued. -- Sebastian > drivers/power/supply/ab8500_chargalg.c | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/drivers/power/supply/ab8500_chargalg.c b/drivers/power/supply/ab8500_chargalg.c > index c9c7f7028af6..8842e51b8b1c 100644 > --- a/drivers/power/supply/ab8500_chargalg.c > +++ b/drivers/power/supply/ab8500_chargalg.c > @@ -287,7 +287,7 @@ ab8500_chargalg_safety_timer_expired(struct hrtimer *timer) > * the maintenance timer > * @timer: pointer to the timer structure > * > - * This function gets called when the maintenence timer > + * This function gets called when the maintenance timer > * expires > */ > static enum hrtimer_restart > @@ -431,7 +431,7 @@ static void ab8500_chargalg_stop_safety_timer(struct ab8500_chargalg *di) > /** > * ab8500_chargalg_start_maintenance_timer() - Start charging maintenance timer > * @di: pointer to the ab8500_chargalg structure > - * @duration: duration of ther maintenance timer in minutes > + * @duration: duration of the maintenance timer in minutes > * > * The maintenance timer is used to maintain the charge in the battery once > * the battery is considered full. These timers are chosen to match the > @@ -1271,7 +1271,7 @@ static void ab8500_chargalg_algorithm(struct ab8500_chargalg *di) > STATE_SAFETY_TIMER_EXPIRED_INIT); > } > /* > - * Check if any interrupts has occured > + * Check if any interrupts has occurred > * that will prevent us from charging > */ > > @@ -1525,7 +1525,7 @@ static void ab8500_chargalg_algorithm(struct ab8500_chargalg *di) > bi->alert_high_temp_charge_voltage_uv, > bi->alert_high_temp_charge_current_ua); > } else { > - dev_err(di->dev, "neither low or high temp event occured\n"); > + dev_err(di->dev, "neither low or high temp event occurred\n"); > ab8500_chargalg_state_to(di, STATE_NORMAL_INIT); > break; > } > -- > 2.34.1 >
diff --git a/drivers/power/supply/ab8500_chargalg.c b/drivers/power/supply/ab8500_chargalg.c index c9c7f7028af6..8842e51b8b1c 100644 --- a/drivers/power/supply/ab8500_chargalg.c +++ b/drivers/power/supply/ab8500_chargalg.c @@ -287,7 +287,7 @@ ab8500_chargalg_safety_timer_expired(struct hrtimer *timer) * the maintenance timer * @timer: pointer to the timer structure * - * This function gets called when the maintenence timer + * This function gets called when the maintenance timer * expires */ static enum hrtimer_restart @@ -431,7 +431,7 @@ static void ab8500_chargalg_stop_safety_timer(struct ab8500_chargalg *di) /** * ab8500_chargalg_start_maintenance_timer() - Start charging maintenance timer * @di: pointer to the ab8500_chargalg structure - * @duration: duration of ther maintenance timer in minutes + * @duration: duration of the maintenance timer in minutes * * The maintenance timer is used to maintain the charge in the battery once * the battery is considered full. These timers are chosen to match the @@ -1271,7 +1271,7 @@ static void ab8500_chargalg_algorithm(struct ab8500_chargalg *di) STATE_SAFETY_TIMER_EXPIRED_INIT); } /* - * Check if any interrupts has occured + * Check if any interrupts has occurred * that will prevent us from charging */ @@ -1525,7 +1525,7 @@ static void ab8500_chargalg_algorithm(struct ab8500_chargalg *di) bi->alert_high_temp_charge_voltage_uv, bi->alert_high_temp_charge_current_ua); } else { - dev_err(di->dev, "neither low or high temp event occured\n"); + dev_err(di->dev, "neither low or high temp event occurred\n"); ab8500_chargalg_state_to(di, STATE_NORMAL_INIT); break; }
There are a few spelling mistakes in comments and in a dev_err error message. Fix them. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> --- drivers/power/supply/ab8500_chargalg.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)