summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan DE CESCO <jonathanc@ti.com>2010-11-26 16:26:40 +0100
committerJonathan DE CESCO <jonathanc@ti.com>2010-11-26 16:26:40 +0100
commit4bdaf290e8df875e051493ca4ee77635ba8cc844 (patch)
tree79659ce0b73258b80db5cf005d2eb1dae6dbf5a4
parentcd0f90c465453c200070a3fd552759f805b3e378 (diff)
downloaduim-4bdaf290e8df875e051493ca4ee77635ba8cc844.tar.gz
Temporary fix for handling state and rfkill events
-rw-r--r--uim.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/uim.c b/uim.c
index 7aabd75..923060c 100644
--- a/uim.c
+++ b/uim.c
@@ -46,7 +46,7 @@ int dev_fd;
/* Maintains the state of N_TI_WL line discipline installation*/
unsigned char st_state = INSTALL_N_TI_WL;
-unsigned char prev_st_state = INSTALL_N_TI_WL;
+unsigned char prev_st_state = UNINSTALL_N_TI_WL;
struct rfkill_event {
uint32_t idx;
@@ -529,8 +529,8 @@ RE_POLL:
UIM_DBG("rf_event: idx %d, type %d, op %d, hard %d, soft %d with rfkill_idx=%d and state:%d\n", rf_event.idx,
rf_event.type, rf_event.op , rf_event.hard,
rf_event.soft, rfkill_idx, st_state);
- if ((rf_event.op == 2) &&
- (rf_event.idx == rfkill_idx)) {
+ if ((rf_event.op == 2) /*&&
+ (rf_event.idx == rfkill_idx)*/) {
if (rf_event.hard == 1) {
st_state = UNINSTALL_N_TI_WL;
UIM_DBG("UNINSTALL_N_TI_WL");