diff options
author | Viresh Kumar <viresh.kumar@linaro.org> | 2015-08-08 10:25:34 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@google.com> | 2015-08-10 17:40:46 -0700 |
commit | 8590ed30be0d3164073d90d1bcf728dd776487c4 (patch) | |
tree | c9df4f82a7e681abe6362090a70269151c278b71 /drivers/staging/greybus/gpio.c | |
parent | 8cbd20aa0de89eb344e05d51ae3bedfabeae360a (diff) | |
download | linux-8590ed30be0d3164073d90d1bcf728dd776487c4.tar.gz linux-8590ed30be0d3164073d90d1bcf728dd776487c4.tar.bz2 linux-8590ed30be0d3164073d90d1bcf728dd776487c4.zip |
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 <viresh.kumar@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Diffstat (limited to 'drivers/staging/greybus/gpio.c')
-rw-r--r-- | drivers/staging/greybus/gpio.c | 4 |
1 files changed, 2 insertions, 2 deletions
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, |