drivers: serial: nrfx_uart: Fix s32_t usage
s32_t was used instead of int32_t after the type transition in Zephyr. Signed-off-by: Robert Lubos <robert.lubos@nordicsemi.no>
This commit is contained in:
parent
aec341e677
commit
041252b764
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ static struct {
|
||||||
size_t tx_buffer_length;
|
size_t tx_buffer_length;
|
||||||
volatile size_t tx_counter;
|
volatile size_t tx_counter;
|
||||||
#if HW_FLOW_CONTROL_AVAILABLE
|
#if HW_FLOW_CONTROL_AVAILABLE
|
||||||
s32_t tx_timeout;
|
int32_t tx_timeout;
|
||||||
struct k_delayed_work tx_timeout_work;
|
struct k_delayed_work tx_timeout_work;
|
||||||
#endif
|
#endif
|
||||||
} uart0_cb;
|
} uart0_cb;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue