Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 105671
b: refs/heads/master
c: 733e27c
h: refs/heads/master
i:
  105669: ab85a9b
  105667: c9f82cf
  105663: 418f967
v: v3
  • Loading branch information
Henrique de Moraes Holschuh committed Jul 21, 2008
1 parent b4a3cdc commit d738ad4
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 21 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3a87208028ef59215a88a143c723ac0b83c11df0
refs/heads/master: 733e27c1cc86afae2d9481838693661b3d839950
39 changes: 19 additions & 20 deletions trunk/drivers/misc/thinkpad_acpi.c
Original file line number Diff line number Diff line change
Expand Up @@ -1285,21 +1285,6 @@ static int hotkey_status_set(int status)
return 0;
}

static void tpacpi_input_send_radiosw(void)
{
int wlsw;

if (tp_features.hotkey_wlsw && !hotkey_get_wlsw(&wlsw)) {
mutex_lock(&tpacpi_inputdev_send_mutex);

input_report_switch(tpacpi_inputdev,
SW_RFKILL_ALL, !!wlsw);
input_sync(tpacpi_inputdev);

mutex_unlock(&tpacpi_inputdev_send_mutex);
}
}

static void tpacpi_input_send_tabletsw(void)
{
int state;
Expand Down Expand Up @@ -1921,6 +1906,22 @@ static struct attribute *hotkey_mask_attributes[] __initdata = {
&dev_attr_hotkey_wakeup_hotunplug_complete.attr,
};

static void tpacpi_send_radiosw_update(void)
{
int wlsw;

if (tp_features.hotkey_wlsw && !hotkey_get_wlsw(&wlsw)) {
mutex_lock(&tpacpi_inputdev_send_mutex);

input_report_switch(tpacpi_inputdev,
SW_RFKILL_ALL, !!wlsw);
input_sync(tpacpi_inputdev);

mutex_unlock(&tpacpi_inputdev_send_mutex);
}
hotkey_radio_sw_notify_change();
}

static void hotkey_exit(void)
{
#ifdef CONFIG_THINKPAD_ACPI_HOTKEY_POLL
Expand Down Expand Up @@ -2288,7 +2289,7 @@ static int __init hotkey_init(struct ibm_init_struct *iibm)
tpacpi_inputdev->close = &hotkey_inputdev_close;

hotkey_poll_setup_safe(1);
tpacpi_input_send_radiosw();
tpacpi_send_radiosw_update();
tpacpi_input_send_tabletsw();

return 0;
Expand Down Expand Up @@ -2420,8 +2421,7 @@ static void hotkey_notify(struct ibm_struct *ibm, u32 event)
case 7:
/* 0x7000-0x7FFF: misc */
if (tp_features.hotkey_wlsw && hkey == 0x7000) {
tpacpi_input_send_radiosw();
hotkey_radio_sw_notify_change();
tpacpi_send_radiosw_update();
send_acpi_ev = 0;
break;
}
Expand Down Expand Up @@ -2464,8 +2464,7 @@ static void hotkey_resume(void)
printk(TPACPI_ERR
"error while trying to read hot key mask "
"from firmware\n");
tpacpi_input_send_radiosw();
hotkey_radio_sw_notify_change();
tpacpi_send_radiosw_update();
hotkey_tablet_mode_notify_change();
hotkey_wakeup_reason_notify_change();
hotkey_wakeup_hotunplug_complete_notify_change();
Expand Down

0 comments on commit d738ad4

Please sign in to comment.