From: Viresh Kumar Date: Sat, 8 Aug 2015 04:55:39 +0000 (+0530) Subject: greybus: uart: Use (already defined) major/minor macros X-Git-Tag: Ubuntu-5.13.0-19.19~14927^2~378^2~21^2~1283^2~26 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=9475fb5c5ad1d61a37c2bd47fb94dcf55b59aaf2;p=mirror_ubuntu-jammy-kernel.git greybus: uart: Use (already defined) major/minor macros We already have macros for these, use them instead of writing fixed values. Signed-off-by: Viresh Kumar Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/greybus/uart.c b/drivers/staging/greybus/uart.c index 0166c4cdb451..7a51c7c792c9 100644 --- a/drivers/staging/greybus/uart.c +++ b/drivers/staging/greybus/uart.c @@ -767,8 +767,8 @@ static void gb_tty_exit(void) static struct gb_protocol uart_protocol = { .name = "uart", .id = GREYBUS_PROTOCOL_UART, - .major = 0, - .minor = 1, + .major = GB_UART_VERSION_MAJOR, + .minor = GB_UART_VERSION_MINOR, .connection_init = gb_uart_connection_init, .connection_exit = gb_uart_connection_exit, .request_recv = gb_uart_request_recv,