diff options
author | Colin Ian King <colin.king@canonical.com> | 2018-05-18 10:31:17 +0100 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2018-05-18 21:55:01 +1000 |
commit | ba01b058a52abcb0539d94ae976ef1c357e06730 (patch) | |
tree | 50c6eba79e3d1b31f1439302eba358fcc390de67 /arch/powerpc/kernel/rtas-proc.c | |
parent | 20acf7fc9409e48cfbfb38262aa53466dfbc22bb (diff) | |
download | linux-ba01b058a52abcb0539d94ae976ef1c357e06730.tar.gz linux-ba01b058a52abcb0539d94ae976ef1c357e06730.tar.bz2 linux-ba01b058a52abcb0539d94ae976ef1c357e06730.zip |
powerpc/rtas: Fix spelling mistake "Discharching" -> "Discharging"
Trivial fix to spelling mistake in battery_charging array.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/kernel/rtas-proc.c')
-rw-r--r-- | arch/powerpc/kernel/rtas-proc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/rtas-proc.c b/arch/powerpc/kernel/rtas-proc.c index fb070d8cad07..11ef978e95db 100644 --- a/arch/powerpc/kernel/rtas-proc.c +++ b/arch/powerpc/kernel/rtas-proc.c @@ -528,7 +528,7 @@ static void ppc_rtas_process_sensor(struct seq_file *m, "EPOW power off" }; const char * battery_cyclestate[] = { "None", "In progress", "Requested" }; - const char * battery_charging[] = { "Charging", "Discharching", + const char * battery_charging[] = { "Charging", "Discharging", "No current flow" }; const char * ibm_drconnector[] = { "Empty", "Present", "Unusable", "Exchange" }; |