|
|
|
@ -120,9 +120,11 @@ void TDEEventDevice::internalReadProvidedSwitches() {
|
|
|
|
|
if (BIT_IS_SET(switches, SW_RFKILL_ALL)) {
|
|
|
|
|
supportedSwitches = supportedSwitches | TDESwitchType::RFKill;
|
|
|
|
|
}
|
|
|
|
|
# if SW_RADIO != SW_RFKILL_ALL // SW_RADIO is a deprecated name for SW_RFKILL_ALL
|
|
|
|
|
if (BIT_IS_SET(switches, SW_RADIO)) {
|
|
|
|
|
supportedSwitches = supportedSwitches | TDESwitchType::Radio;
|
|
|
|
|
}
|
|
|
|
|
# endif
|
|
|
|
|
if (BIT_IS_SET(switches, SW_MICROPHONE_INSERT)) {
|
|
|
|
|
supportedSwitches = supportedSwitches | TDESwitchType::MicrophoneInsert;
|
|
|
|
|
}
|
|
|
|
@ -229,9 +231,11 @@ void TDEEventDevice::internalReadActiveSwitches() {
|
|
|
|
|
if (BIT_IS_SET(switches, SW_RFKILL_ALL)) {
|
|
|
|
|
activeSwitches = activeSwitches | TDESwitchType::RFKill;
|
|
|
|
|
}
|
|
|
|
|
# if SW_RADIO != SW_RFKILL_ALL // SW_RADIO is a deprecated name for SW_RFKILL_ALL
|
|
|
|
|
if (BIT_IS_SET(switches, SW_RADIO)) {
|
|
|
|
|
activeSwitches = activeSwitches | TDESwitchType::Radio;
|
|
|
|
|
}
|
|
|
|
|
# endif
|
|
|
|
|
if (BIT_IS_SET(switches, SW_MICROPHONE_INSERT)) {
|
|
|
|
|
activeSwitches = activeSwitches | TDESwitchType::MicrophoneInsert;
|
|
|
|
|
}
|
|
|
|
|