diff options
author | Stefan Kerkmann <karlk90@pm.me> | 2022-10-05 19:22:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-05 19:22:57 +0200 |
commit | c76d2074b68b1fdaa48e7af7ce93275fe418f538 (patch) | |
tree | 3ac4985f1c93410350f7868f79a5bc40a50557a3 /quantum/split_common | |
parent | 86ce1d4b04031174b3eca666fbee5f7c9c706ab2 (diff) |
[Bug] Fix ST7565 handler deadlock (#18609)
Diffstat (limited to 'quantum/split_common')
-rw-r--r-- | quantum/split_common/transactions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/split_common/transactions.c b/quantum/split_common/transactions.c index 13fd8a761e..67986e4340 100644 --- a/quantum/split_common/transactions.c +++ b/quantum/split_common/transactions.c @@ -623,7 +623,7 @@ static void st7565_handlers_slave(matrix_row_t master_matrix[], matrix_row_t sla } # define TRANSACTIONS_ST7565_MASTER() TRANSACTION_HANDLER_MASTER(st7565) -# define TRANSACTIONS_ST7565_SLAVE() TRANSACTION_HANDLER_SLAVE_AUTOLOCK(st7565) +# define TRANSACTIONS_ST7565_SLAVE() TRANSACTION_HANDLER_SLAVE(st7565) # define TRANSACTIONS_ST7565_REGISTRATIONS [PUT_ST7565] = trans_initiator2target_initializer(current_st7565_state), #else // defined(ST7565_ENABLE) && defined(SPLIT_ST7565_ENABLE) |