Skip to content

Commit bd6036e

Browse files
drivers: i3c: stm32: fix ibi build issue
Use the correct 'place' for the hj_pm_lock variable Signed-off-by: Ryan McClelland <rymcclel@gmail.com>
1 parent 961593d commit bd6036e

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

drivers/i3c/i3c_stm32.c

+6-5
Original file line numberDiff line numberDiff line change
@@ -1563,7 +1563,7 @@ static int i3c_stm32_init(const struct device *dev)
15631563

15641564
#ifdef CONFIG_I3C_USE_IBI
15651565
LL_I3C_EnableHJAck(i3c);
1566-
hj_pm_lock = true;
1566+
data->hj_pm_lock = true;
15671567
(void)pm_device_runtime_get(dev);
15681568
pm_policy_state_lock_get(PM_STATE_SUSPEND_TO_IDLE, PM_ALL_SUBSTATES);
15691569
#endif
@@ -1902,23 +1902,24 @@ static void i3c_stm32_error_isr(void *arg)
19021902
int i3c_stm32_ibi_hj_response(const struct device *dev, bool ack)
19031903
{
19041904
const struct i3c_stm32_config *config = dev->config;
1905+
struct i3c_stm32_data *data = dev->data;
19051906
I3C_TypeDef *i3c = config->i3c;
19061907

19071908
if (ack) {
19081909
/*
19091910
* This prevents pm_device_runtime from being called multiple times
19101911
* with redunant calls
19111912
*/
1912-
if (!hj_pm_lock) {
1913-
hj_pm_lock = true;
1913+
if (!data->hj_pm_lock) {
1914+
data->hj_pm_lock = true;
19141915
(void)pm_device_runtime_get(dev);
19151916
pm_policy_state_lock_get(PM_STATE_SUSPEND_TO_IDLE, PM_ALL_SUBSTATES);
19161917
}
19171918
LL_I3C_EnableHJAck(i3c);
19181919
} else {
19191920
LL_I3C_DisableHJAck(i3c);
1920-
if (hj_pm_lock) {
1921-
hj_pm_lock = false;
1921+
if (data->hj_pm_lock) {
1922+
data->hj_pm_lock = false;
19221923
(void)pm_device_runtime_put(dev);
19231924
pm_policy_state_lock_put(PM_STATE_SUSPEND_TO_IDLE, PM_ALL_SUBSTATES);
19241925
}

0 commit comments

Comments
 (0)