--- linux/drivers/char/pc_keyb.c.original Sat Mar 17 22:15:33 2001 +++ linux/drivers/char/pc_keyb.c Sat Mar 17 22:27:05 2001 @@ -220,6 +220,13 @@ #define E0_MSLW 125 #define E0_MSRW 126 #define E0_MSTM 127 +/* + * Panaview keyboard has e0 5e (Power), e0 5f (Sleep) and + * e0 63 (Wake Up) button. + */ +#define E0_PWR 113 +#define E0_SLP 114 +#define E0_WKU 115 static unsigned char e0_keys[128] = { 0, 0, 0, 0, 0, 0, 0, 0, /* 0x00-0x07 */ @@ -233,8 +240,8 @@ E0_DO, E0_F17, 0, 0, 0, 0, E0_BREAK, E0_HOME, /* 0x40-0x47 */ E0_UP, E0_PGUP, 0, E0_LEFT, E0_OK, E0_RIGHT, E0_KPMINPLUS, E0_END,/* 0x48-0x4f */ E0_DOWN, E0_PGDN, E0_INS, E0_DEL, 0, 0, 0, 0, /* 0x50-0x57 */ - 0, 0, 0, E0_MSLW, E0_MSRW, E0_MSTM, 0, 0, /* 0x58-0x5f */ - 0, 0, 0, 0, 0, 0, 0, 0, /* 0x60-0x67 */ + 0, 0, 0, E0_MSLW, E0_MSRW, E0_MSTM, E0_PWR, E0_SLP, /* 0x58-0x5f */ + 0, 0, 0, E0_WKU, 0, 0, 0, 0, /* 0x60-0x67 */ 0, 0, 0, 0, 0, 0, 0, E0_MACRO, /* 0x68-0x6f */ 0, 0, 0, 0, 0, 0, 0, 0, /* 0x70-0x77 */ 0, 0, 0, 0, 0, 0, 0, 0 /* 0x78-0x7f */