mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Jerome Pinot <ngc891@gmail.com>
To: kj <kernel-janitors@lists.osdl.org>,
	linux-input@atrey.karlin.mff.cuni.cz
Cc: lkml <linux-kernel@vger.kernel.org>
Subject: [PATCH] atkbd: fix mispell of the korean alphabet name
Date: Fri, 7 Oct 2005 23:58:37 +0900	[thread overview]
Message-ID: <200510071458.j97Ewbfv000624@comet.deepsky.org> (raw)

From: Jerome Pinot <ngc891@gmail.com>
 
 Fix a mispell on the korean alphabet name in the atkbd subsystem.
 See http://en.wikipedia.org/wiki/Hangeul#Names for more details.
 Will make some korean people happy.
 
 Signed-off-by: Jerome Pinot <ngc891@gmail.com>
 ---
 
 diff --git a/drivers/char/keyboard.c b/drivers/char/keyboard.c
 --- a/drivers/char/keyboard.c
 +++ b/drivers/char/keyboard.c
 @@ -975,7 +975,7 @@ static int emulate_raw(struct vc_data *v
  			put_queue(vc, 0x1d | up_flag);
  			put_queue(vc, 0x45 | up_flag);
  			return 0;
 -		case KEY_HANGUEL:
 +		case KEY_HANGEUL:
  			if (!up_flag) put_queue(vc, 0xf1);
  			return 0;
  		case KEY_HANJA:
 diff --git a/drivers/input/keyboard/atkbd.c b/drivers/input/keyboard/atkbd.c
 --- a/drivers/input/keyboard/atkbd.c
 +++ b/drivers/input/keyboard/atkbd.c
 @@ -149,7 +149,7 @@ static unsigned char atkbd_unxlate_table
  #define ATKBD_RET_EMUL0		0xe0
  #define ATKBD_RET_EMUL1		0xe1
  #define ATKBD_RET_RELEASE	0xf0
 -#define ATKBD_RET_HANGUEL	0xf1
 +#define ATKBD_RET_HANGEUL	0xf1
  #define ATKBD_RET_HANJA		0xf2
  #define ATKBD_RET_ERR		0xff
  
 @@ -296,7 +296,7 @@ static irqreturn_t atkbd_interrupt(struc
  
  		if (atkbd->emul ||
  		    !(code == ATKBD_RET_EMUL0 || code == ATKBD_RET_EMUL1 ||
 -		      code == ATKBD_RET_HANGUEL || code == ATKBD_RET_HANJA ||
 +		      code == ATKBD_RET_HANGEUL || code == ATKBD_RET_HANJA ||
  		     (code == ATKBD_RET_ERR && !atkbd->err_xl) ||
  	             (code == ATKBD_RET_BAT && !atkbd->bat_xl))) {
  			atkbd->release = code >> 7;
 @@ -325,8 +325,8 @@ static irqreturn_t atkbd_interrupt(struc
  		case ATKBD_RET_RELEASE:
  			atkbd->release = 1;
  			goto out;
 -		case ATKBD_RET_HANGUEL:
 -			atkbd_report_key(&atkbd->dev, regs, KEY_HANGUEL, 3);
 +		case ATKBD_RET_HANGEUL:
 +			atkbd_report_key(&atkbd->dev, regs, KEY_HANGEUL, 3);
  			goto out;
  		case ATKBD_RET_HANJA:
  			atkbd_report_key(&atkbd->dev, regs, KEY_HANJA, 3);
 diff --git a/drivers/macintosh/adbhid.c b/drivers/macintosh/adbhid.c
 --- a/drivers/macintosh/adbhid.c
 +++ b/drivers/macintosh/adbhid.c
 @@ -179,7 +179,7 @@ u8 adb_to_linux_keycodes[128] = {
  	/* 0x65 */ KEY_F9,		/*  67 */
  	/* 0x66 */ KEY_HANJA,		/* 123 */
  	/* 0x67 */ KEY_F11,		/*  87 */
 -	/* 0x68 */ KEY_HANGUEL,		/* 122 */
 +	/* 0x68 */ KEY_HANGEUL,		/* 122 */
  	/* 0x69 */ KEY_SYSRQ,		/*  99 */
  	/* 0x6a */ 0,
  	/* 0x6b */ KEY_SCROLLLOCK,	/*  70 */
 diff --git a/drivers/usb/input/hid-debug.h b/drivers/usb/input/hid-debug.h
 --- a/drivers/usb/input/hid-debug.h
 +++ b/drivers/usb/input/hid-debug.h
 @@ -563,7 +563,7 @@ static char *keys[KEY_MAX + 1] = {
  	[KEY_VOLUMEUP] = "VolumeUp",		[KEY_POWER] = "Power",
  	[KEY_KPEQUAL] = "KPEqual",		[KEY_KPPLUSMINUS] = "KPPlusMinus",
  	[KEY_PAUSE] = "Pause",			[KEY_KPCOMMA] = "KPComma",
 -	[KEY_HANGUEL] = "Hanguel",		[KEY_HANJA] = "Hanja",
 +	[KEY_HANGEUL] = "Hangeul",		[KEY_HANJA] = "Hanja",
  	[KEY_YEN] = "Yen",			[KEY_LEFTMETA] = "LeftMeta",
  	[KEY_RIGHTMETA] = "RightMeta",		[KEY_COMPOSE] = "Compose",
  	[KEY_STOP] = "Stop",			[KEY_AGAIN] = "Again",
 diff --git a/include/linux/input.h b/include/linux/input.h
 --- a/include/linux/input.h
 +++ b/include/linux/input.h
 @@ -229,7 +229,7 @@ struct input_absinfo {
  #define KEY_PAUSE		119
  
  #define KEY_KPCOMMA		121
 -#define KEY_HANGUEL		122
 +#define KEY_HANGEUL		122
  #define KEY_HANJA		123
  #define KEY_YEN			124
  #define KEY_LEFTMETA		125


                 reply	other threads:[~2005-10-07 14:58 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200510071458.j97Ewbfv000624@comet.deepsky.org \
    --to=ngc891@gmail.com \
    --cc=kernel-janitors@lists.osdl.org \
    --cc=linux-input@atrey.karlin.mff.cuni.cz \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®