commit | 7a6764987e7e8664716fdef6218bde58c44cd47a | [log] [tgz] |
---|---|---|
author | Yong Cong Sin <yongcong.sin@gmail.com> | Sun Feb 20 16:16:30 2022 +0800 |
committer | Carles CufĂ <carles.cufi@nordicsemi.no> | Mon Feb 28 11:05:06 2022 +0100 |
tree | a73ad7d07e172498a772915992f42998be13678d | |
parent | f50502828090a78e5b0db6bfb9e4ceb19d97337c [diff] |
drivers: modem: gsm: remove use of preprocessor directives for rssi The rssi_work_handle always exists in the gsm struct, so use ``` if (IS_ENABLED(CONFIG_GSM_MUX)) ``` instead of ``` #if defined(CONFIG_GSM_MUX) ``` for better code readability. Signed-off-by: Yong Cong Sin <yongcong.sin@gmail.com>