From: Viresh Kumar Date: Sat, 8 Aug 2015 04:55:34 +0000 (+0530) Subject: greybus: gpio: Use (already defined) major/minor macros X-Git-Tag: v4.9-rc1~119^2~378^2~21^2~1283^2~31 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=8590ed30be0d3164073d90d1bcf728dd776487c4;p=karo-tx-linux.git greybus: gpio: 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/gpio.c b/drivers/staging/greybus/gpio.c index caee9d19d723..a5db014eaaf2 100644 --- a/drivers/staging/greybus/gpio.c +++ b/drivers/staging/greybus/gpio.c @@ -719,8 +719,8 @@ static void gb_gpio_connection_exit(struct gb_connection *connection) static struct gb_protocol gpio_protocol = { .name = "gpio", .id = GREYBUS_PROTOCOL_GPIO, - .major = 0, - .minor = 1, + .major = GB_GPIO_VERSION_MAJOR, + .minor = GB_GPIO_VERSION_MINOR, .connection_init = gb_gpio_connection_init, .connection_exit = gb_gpio_connection_exit, .request_recv = gb_gpio_request_recv,