|
Lines 142-147
struct asus_hotk {
Link Here
|
| 142 |
P30, //Samsung P30 |
142 |
P30, //Samsung P30 |
| 143 |
S1x, //S1300A, but also L1400B and M2400A (L84F) |
143 |
S1x, //S1300A, but also L1400B and M2400A (L84F) |
| 144 |
S2x, //S200 (J1 reported), Victor MP-XP7210 |
144 |
S2x, //S200 (J1 reported), Victor MP-XP7210 |
|
|
145 |
V6V, //V6V |
| 145 |
W1N, //W1000N |
146 |
W1N, //W1000N |
| 146 |
W5A, //W5A |
147 |
W5A, //W5A |
| 147 |
xxN, //M2400N, M3700N, M5200N, M6800N, S1300N, S5200N |
148 |
xxN, //M2400N, M3700N, M5200N, M6800N, S1300N, S5200N |
|
Lines 377-382
static struct model_data model_conf[END_
Link Here
|
| 377 |
}, |
378 |
}, |
| 378 |
|
379 |
|
| 379 |
{ |
380 |
{ |
|
|
381 |
.name = "V6V", |
| 382 |
.mt_bt_switch = "BLED", |
| 383 |
.mt_wled = "WLED", |
| 384 |
.mt_tled = "TLED", |
| 385 |
.mt_lcd_switch = xxN_PREFIX "_Q10", |
| 386 |
.bt_status = "\\_SB.PCI0.SBRG.BLTS", |
| 387 |
.display_get = "\\_SB.PCI0.POP1.VGA.GETD", |
| 388 |
.display_set = "SDSP", |
| 389 |
.brightness_set = "SPLV", |
| 390 |
.brightness_get = "GPLV", |
| 391 |
.lcd_status = "\\BKLT" |
| 392 |
}, |
| 393 |
|
| 394 |
{ |
| 380 |
.name = "W1N", |
395 |
.name = "W1N", |
| 381 |
.mt_mled = "MLED", |
396 |
.mt_mled = "MLED", |
| 382 |
.mt_wled = "WLED", |
397 |
.mt_wled = "WLED", |
|
Lines 1109-1114
static int __init asus_model_match(char
Link Here
|
| 1109 |
return L5x; |
1124 |
return L5x; |
| 1110 |
else if (strncmp(model, "A4G", 3) == 0) |
1125 |
else if (strncmp(model, "A4G", 3) == 0) |
| 1111 |
return A4G; |
1126 |
return A4G; |
|
|
1127 |
else if (strncmp(model, "V6V", 3) == 0) |
| 1128 |
return V6V; |
| 1112 |
else if (strncmp(model, "W1N", 3) == 0) |
1129 |
else if (strncmp(model, "W1N", 3) == 0) |
| 1113 |
return W1N; |
1130 |
return W1N; |
| 1114 |
else if (strncmp(model, "W5A", 3) == 0) |
1131 |
else if (strncmp(model, "W5A", 3) == 0) |