Most laptops have keys that are intended to toggle all device state, not just wifi. These are currently generally mapped to KEY_WLAN. As a result, rfkill will only kill or enable wifi in response to the key press. This confuses users and can make it difficult for them to enable bluetooth and wwan devices. This patch adds a new keycode, KEY_RFKILL. It indicates that the system should toggle the state of all rfkillable devices. Signed-off-by: Matthew Garrett <mjg@xxxxxxxxxx> --- include/linux/input.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/linux/input.h b/include/linux/input.h index 735ceaf..3294a89 100644 --- a/include/linux/input.h +++ b/include/linux/input.h @@ -594,7 +594,7 @@ struct input_absinfo { #define KEY_NUMERIC_9 0x209 #define KEY_NUMERIC_STAR 0x20a #define KEY_NUMERIC_POUND 0x20b - +#define KEY_RFKILL 0x20c /* Key that controls all radios */ #define KEY_CAMERA_FOCUS 0x210 /* We avoid low common keys in module aliases so they don't get huge. */ -- 1.6.6.1 -- To unsubscribe from this list: send the line "unsubscribe linux-input" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html