uart_sam0: fix shadowed variable.

This code was added to CI after the `-Wshadow` stack was prepared, so it
was not fixed together with the rest.

Signed-off-by: Diego Elio Pettenò <flameeyes@meta.com>
This commit is contained in:
Diego Elio Pettenò 2023-08-22 12:50:33 +01:00 committed by Alberto Escolar
parent b6095a878c
commit 9a882f8b09

View file

@ -1152,7 +1152,7 @@ static int uart_sam0_rx_disable(const struct device *dev)
}
if (dev_data->rx_next_len) {
struct uart_event evt = {
struct uart_event next_evt = {
.type = UART_RX_BUF_RELEASED,
.data.rx_buf = {
.buf = dev_data->rx_next_buf,
@ -1163,7 +1163,7 @@ static int uart_sam0_rx_disable(const struct device *dev)
dev_data->rx_next_len = 0U;
if (dev_data->async_cb) {
dev_data->async_cb(dev, &evt, dev_data->async_cb_data);
dev_data->async_cb(dev, &next_evt, dev_data->async_cb_data);
}
}