File tree 1 file changed +6
-5
lines changed
1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -1563,7 +1563,7 @@ static int i3c_stm32_init(const struct device *dev)
1563
1563
1564
1564
#ifdef CONFIG_I3C_USE_IBI
1565
1565
LL_I3C_EnableHJAck (i3c );
1566
- hj_pm_lock = true;
1566
+ data -> hj_pm_lock = true;
1567
1567
(void )pm_device_runtime_get (dev );
1568
1568
pm_policy_state_lock_get (PM_STATE_SUSPEND_TO_IDLE , PM_ALL_SUBSTATES );
1569
1569
#endif
@@ -1902,23 +1902,24 @@ static void i3c_stm32_error_isr(void *arg)
1902
1902
int i3c_stm32_ibi_hj_response (const struct device * dev , bool ack )
1903
1903
{
1904
1904
const struct i3c_stm32_config * config = dev -> config ;
1905
+ struct i3c_stm32_data * data = dev -> data ;
1905
1906
I3C_TypeDef * i3c = config -> i3c ;
1906
1907
1907
1908
if (ack ) {
1908
1909
/*
1909
1910
* This prevents pm_device_runtime from being called multiple times
1910
1911
* with redunant calls
1911
1912
*/
1912
- if (!hj_pm_lock ) {
1913
- hj_pm_lock = true;
1913
+ if (!data -> hj_pm_lock ) {
1914
+ data -> hj_pm_lock = true;
1914
1915
(void )pm_device_runtime_get (dev );
1915
1916
pm_policy_state_lock_get (PM_STATE_SUSPEND_TO_IDLE , PM_ALL_SUBSTATES );
1916
1917
}
1917
1918
LL_I3C_EnableHJAck (i3c );
1918
1919
} else {
1919
1920
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;
1922
1923
(void )pm_device_runtime_put (dev );
1923
1924
pm_policy_state_lock_put (PM_STATE_SUSPEND_TO_IDLE , PM_ALL_SUBSTATES );
1924
1925
}
You can’t perform that action at this time.
0 commit comments