kernel: syscalls: Whitespace fixups
The semi-automated API changes weren't checkpatch aware. Fix up whitespace warnings that snuck into the previous patches. Really this should be squashed, but that's somewhat difficult given the structure of the series. Signed-off-by: Andy Ross <andrew.j.ross@intel.com>
This commit is contained in:
parent
075c94f6e2
commit
643701aaf8
14 changed files with 55 additions and 29 deletions
|
@ -8,13 +8,15 @@
|
|||
#include <syscall_handler.h>
|
||||
|
||||
#define UART_SIMPLE(op_) \
|
||||
static inline int z_vrfy_uart_##op_(struct device *dev) { \
|
||||
static inline int z_vrfy_uart_##op_(struct device *dev) \
|
||||
{ \
|
||||
Z_OOPS(Z_SYSCALL_DRIVER_UART(dev, op_)); \
|
||||
return z_impl_uart_ ## op_(dev); \
|
||||
}
|
||||
|
||||
#define UART_SIMPLE_VOID(op_) \
|
||||
static inline void z_vrfy_uart_##op_(struct device *dev) { \
|
||||
static inline void z_vrfy_uart_##op_(struct device *dev) \
|
||||
{ \
|
||||
Z_OOPS(Z_SYSCALL_DRIVER_UART(dev, op_)); \
|
||||
z_impl_uart_ ## op_(dev); \
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue