From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752238AbbISWS6 (ORCPT ); Sat, 19 Sep 2015 18:18:58 -0400 Received: from mout.perfora.net ([74.208.4.194]:52321 "EHLO mout.perfora.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751760AbbISWS5 (ORCPT ); Sat, 19 Sep 2015 18:18:57 -0400 X-Greylist: delayed 308 seconds by postgrey-1.27 at vger.kernel.org; Sat, 19 Sep 2015 18:18:57 EDT From: Marcel Ziswiler To: linux-kernel@vger.kernel.org Cc: Marcel Ziswiler , Jonghwa Lee , Sebastian Reichel , Krzysztof Kozlowski , Darren Hart Subject: [PATCH] power: charger-manager: comment spelling fixes Date: Sun, 20 Sep 2015 00:13:37 +0200 Message-Id: <1442700817-7666-1-git-send-email-marcel@ziswiler.com> X-Mailer: git-send-email 2.4.3 X-Provags-ID: V03:K0:Es29yy8jVUTkWXecGE43199TiSRPMOVglSHVaegNzhyfcA64sc5 4kZgAhbEkHUYRlXbPOrIhxag1muwenzaBQwYy7Az+k5abDGzmfO7gzp3Mqv2x4AOVDCPYBv 11+k7LqZLbH25TVy7rTurhbHvINPszkWI1SD1KysNObZMyNILR1cXdqp83Q8x1OZkYYr1xg P7ocYfU/LeHe3iUnEmZnw== X-UI-Out-Filterresults: notjunk:1;V01:K0:m0OtKJZFx/4=:7pTgQBOH6QO1fDainDgcIo gu6hZ5CytsXvxorp8WxzZ9P76O43yk2QnGwcCytgYGAjpdEx82Z0iWqAdP8C6xfaVCKlngagv SVhR/NL4e9tNlAONTvgahvKHXxZoUAn5nm7BfRcoGQbgo74NItGXsnVWi9KtsNekq/U1WE+5d EaEnJQWZnDG5dt1EeTomyLT7gKNI/uS3tSZQmYnUPk3mDz2SSIdtVEcIYOYJBt5ee8YDOQvs8 d7rGkP2mDIladUsY3i+lWX2YghtIyYD/eRauTcbqjsXkocT/FYOhJx26xNDQWMScKCg91uAHX aEbWfwDBo3KwXotW/PgUoJiupfoftnqKDkFDHsO7gyhHWT/f9lSm754vpcvG9rnM1tL5KgwZt OSyhepCyYMTIOD07pz/0n43ejTeqv5mjcsOgFxkU9U1ZpXLk9ezmpn0/w/rsFCWSpTwkueXoV 9WT88shSx3uY2kGbZEc5qkepZUTi1KftTdVOLnmaeeF2+TS01r3rwD6og2g8okdBiHv9bOpgF 7vMi1SNXFLlEan5CmbeyisZwLIgjYQgeBcVVIp7KVbBnrsTSnIasfsDZfCsZJ3ND09r6K6SZH umvWMZw4Wr8JCQ6Kn6wqSk32oWSA70daALLX7SStbGOdQ2t04U/J++BlqvQXGRFhVg6LzxiYA ysWraLaOUwcb+aKfoTG7QgvHRdvhaDFGMU9X2qRoOOzqUiGswHAfP1t+TWWPsu2V3fd8= Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org By accident I stumbled over a few misspelled words in the charger-manager header file which this patch fixes. Namely: - Extcon rather than Exton - constraint rather than constratint - existence rather than existance - difference rather than diffential While at it also add a missing space before a closing comment star forward-slash. Signed-off-by: Marcel Ziswiler --- include/linux/power/charger-manager.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/linux/power/charger-manager.h b/include/linux/power/charger-manager.h index eadf28c..c4fa907 100644 --- a/include/linux/power/charger-manager.h +++ b/include/linux/power/charger-manager.h @@ -65,7 +65,7 @@ struct charger_cable { const char *extcon_name; const char *name; - /* The charger-manager use Exton framework*/ + /* The charger-manager use Extcon framework */ struct extcon_specific_cable_nb extcon_dev; struct work_struct wq; struct notifier_block nb; @@ -94,7 +94,7 @@ struct charger_cable { * the charger will be maintained with disabled state. * @cables: * the array of charger cables to enable/disable charger - * and set current limit according to constratint data of + * and set current limit according to constraint data of * struct charger_cable if only charger cable included * in the array of charger cables is attached/detached. * @num_cables: the number of charger cables. @@ -148,7 +148,7 @@ struct charger_regulator { * @polling_interval_ms: interval in millisecond at which * charger manager will monitor battery health * @battery_present: - * Specify where information for existance of battery can be obtained + * Specify where information for existence of battery can be obtained * @psy_charger_stat: the names of power-supply for chargers * @num_charger_regulator: the number of entries in charger_regulators * @charger_regulators: array of charger regulators @@ -156,7 +156,7 @@ struct charger_regulator { * @thermal_zone : the name of thermal zone for battery * @temp_min : Minimum battery temperature for charging. * @temp_max : Maximum battery temperature for charging. - * @temp_diff : Temperature diffential to restart charging. + * @temp_diff : Temperature difference to restart charging. * @measure_battery_temp: * true: measure battery temperature * false: measure ambient temperature -- 2.4.3