Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion drivers/serial/uart_handlers.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ static inline int z_vrfy_uart_config_get(const struct device *dev,
static inline int z_vrfy_uart_configure(const struct device *dev,
const struct uart_config *cfg)
{
K_OOPS(K_SYSCALL_DRIVER_UART(dev, config_get));
K_OOPS(K_SYSCALL_DRIVER_UART(dev, configure));
K_OOPS(K_SYSCALL_MEMORY_READ(cfg, sizeof(struct uart_config)));

return z_impl_uart_configure(dev, cfg);
Expand Down
Loading