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:
Robert Lubos 2020-06-11 10:06:53 +02:00 committed by Maureen Helm
commit 041252b764

View file

@ -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;