aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonald G. Minnich <rminnich@gmail.com>2013-03-07 11:05:28 -0600
committerRonald G. Minnich <rminnich@gmail.com>2013-03-07 18:28:16 +0100
commitbe738eb1336a856bc6f2494ccd7ede3194e6c618 (patch)
treec9a741ea585bd494e22dbd8380b8fe7cf36d0062
parent147cdc3b171c8f02434dc3b6bbd70b6406de93ee (diff)
Remove UTF-8 characters from comments
I've used an operating system for over 10 years now that makes UTF-8 easy. It's not called Linux or OSX. When UTF-8 is needed, of course, then we can look again. I can't think of a single redeeming feature of placing it in the comment in this manner. It's certainy not needed. The inclusion of UTF-8 characters is inconvenient, especially from a text terminal. I don't really want to start using compose in CROSH shell terminals on chromeos. We might want to incorporate "no UTF-8" as a commit filter. For now, get rid of these characters. Change-Id: If94cc657bae1dbd282bec8de6c5309b1f8da5659 Signed-off-by: Ronald G. Minnich <rminnich@gmail.com> Reviewed-on: http://review.coreboot.org/2604 Reviewed-by: Bernhard Urban <lewurm@gmail.com> Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
-rw-r--r--src/arch/x86/boot/acpigen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86/boot/acpigen.c b/src/arch/x86/boot/acpigen.c
index 58e783ed41..121cb22f05 100644
--- a/src/arch/x86/boot/acpigen.c
+++ b/src/arch/x86/boot/acpigen.c
@@ -211,13 +211,13 @@ int acpigen_emit_namestring(const char *namepath) {
int dotpos = 0;
int len = 0;
- /* We can start with a »\«. */
+ /* We can start with a '\'. */
if (namepath[0] == '\\') {
len += acpigen_emit_byte('\\');
namepath++;
}
- /* And there can be any number of »^«. */
+ /* And there can be any number of '^' */
while (namepath[0] == '^') {
len += acpigen_emit_byte('^');
namepath++;