Commit 79d6c409 authored by Rafael J. Wysocki's avatar Rafael J. Wysocki

Merge tag 'linux-cpupower-5.10-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux

Pull cpupower utility updates for 5.10-rc1 from Shuah Khan:

"This update consists of minor fixes for spelling and speeding up
 generating git version string which will in turn speed up compiles."

* tag 'linux-cpupower-5.10-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux:
  cpupower: speed up generating git version string
  cpupowerutils: fix spelling mistake "dependant" -> "dependent"
parents 0b8417c1 527b7779
...@@ -51,7 +51,7 @@ DESTDIR ?= ...@@ -51,7 +51,7 @@ DESTDIR ?=
# Package-related definitions. Distributions can modify the version # Package-related definitions. Distributions can modify the version
# and _should_ modify the PACKAGE_BUGREPORT definition # and _should_ modify the PACKAGE_BUGREPORT definition
VERSION= $(shell ./utils/version-gen.sh) VERSION:= $(shell ./utils/version-gen.sh)
LIB_MAJ= 0.0.1 LIB_MAJ= 0.0.1
LIB_MIN= 0 LIB_MIN= 0
......
...@@ -71,7 +71,7 @@ int main (void) ...@@ -71,7 +71,7 @@ int main (void)
printf("\tsmi_cmd=0x?? smi_port=0x?? smi_sig=1\n"); printf("\tsmi_cmd=0x?? smi_port=0x?? smi_sig=1\n");
printf("\nUnfortunately, you have to know what exactly are " printf("\nUnfortunately, you have to know what exactly are "
"smi_cmd and smi_port, and this\nis system " "smi_cmd and smi_port, and this\nis system "
"dependant.\n"); "dependent.\n");
} }
return 1; return 1;
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment