Commit 803eb2c9 authored by Mario Limonciello's avatar Mario Limonciello Committed by james toy

The "hardware" switch is tied directly to a BIOS interface that will

connect and disconnect the hardware from the bus.

If you use the software interface to request the BIOS to make these
changes, the HW switch will be in an inconsistent state and LEDs may not
reflect the state of the HW.
Signed-off-by: default avatarMario Limonciello <Mario_Limonciello@Dell.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent b192f3b1
......@@ -181,6 +181,10 @@ static int dell_rfkill_set(void *data, bool blocked)
unsigned long radio = (unsigned long)data;
memset(&buffer, 0, sizeof(struct calling_interface_buffer));
dell_send_request(&buffer, 17, 11);
if (!(buffer.output[1] & BIT(16)))
return -EINVAL;
buffer.input[0] = (1 | (radio<<8) | (disable << 16));
dell_send_request(&buffer, 17, 11);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment