[PATCH] export getledstate()

From: Karl Dahlke
Date: Tue Feb 19 2008 - 13:57:37 EST


I write adapters for disabled people, and we often have to do
specialized functions based on keystrokes and key chords.
I would like to do certain things when keys are hit and num lock is on,
but there is no easy way to get the led state.
There is a nice function getledstate()
in keyboard.c, it just isn't exported.
Here is the patch that would do that.
Can you apply this patch, or, is there another easy way to get this information,
or, would it be better to fold this information into keyboard_notifier_param,
along with shift state etc.
I use notifiers, so this would be natural, and almost as easy.
I'd be happy to write that patch, if you think that would be a superior design.

--- drivers/char/keyboard.c 2008-02-18 21:05:23.000000000 -0500
+++ drivers/char/keyboard.c.new 2008-02-18 21:06:34.000000000 -0500
@@ -963,6 +963,7 @@ unsigned char getledstate(void)
{
return ledstate;
}
+EXPORT_SYMBOL_GPL(getledstate);

void setledstate(struct kbd_struct *kbd, unsigned int led)
{

Thanks.

Karl Dahlke
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/