aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/platform/x86/dell-laptop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/platform/x86/dell-laptop.c b/drivers/platform/x86/dell-laptop.c
index 74909c4aaeea..906111152b03 100644
--- a/drivers/platform/x86/dell-laptop.c
+++ b/drivers/platform/x86/dell-laptop.c
@@ -197,8 +197,8 @@ static void dell_rfkill_query(struct rfkill *rfkill, void *data)
197 dell_send_request(&buffer, 17, 11); 197 dell_send_request(&buffer, 17, 11);
198 status = buffer.output[1]; 198 status = buffer.output[1];
199 199
200 if (status & BIT(bit)) 200 rfkill_set_sw_state(rfkill, !!(status & BIT(bit)));
201 rfkill_set_hw_state(rfkill, !!(status & BIT(16))); 201 rfkill_set_hw_state(rfkill, !(status & BIT(16)));
202} 202}
203 203
204static const struct rfkill_ops dell_rfkill_ops = { 204static const struct rfkill_ops dell_rfkill_ops = {