summaryrefslogtreecommitdiff
path: root/drivers/staging/greybus/vibrator.c
diff options
context:
space:
mode:
authorViresh Kumar <viresh.kumar@linaro.org>2015-08-08 07:55:41 +0300
committerGreg Kroah-Hartman <gregkh@google.com>2015-08-11 03:40:46 +0300
commitf0a1698f18722fccb920448285b8fc87f793870a (patch)
treef98813cfebbbf1cfda2197e0fb3f554e1503d7ae /drivers/staging/greybus/vibrator.c
parentf514b5c31435909960fe32e309d7417c52629cc1 (diff)
downloadlinux-f0a1698f18722fccb920448285b8fc87f793870a.tar.xz
greybus: vibrator: 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/vibrator.c')
-rw-r--r--drivers/staging/greybus/vibrator.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/greybus/vibrator.c b/drivers/staging/greybus/vibrator.c
index 62b3552006fc..df9c4b14c707 100644
--- a/drivers/staging/greybus/vibrator.c
+++ b/drivers/staging/greybus/vibrator.c
@@ -167,8 +167,8 @@ static void gb_vibrator_connection_exit(struct gb_connection *connection)
static struct gb_protocol vibrator_protocol = {
.name = "vibrator",
.id = GREYBUS_PROTOCOL_VIBRATOR,
- .major = 0,
- .minor = 1,
+ .major = GB_VIBRATOR_VERSION_MAJOR,
+ .minor = GB_VIBRATOR_VERSION_MINOR,
.connection_init = gb_vibrator_connection_init,
.connection_exit = gb_vibrator_connection_exit,
.request_recv = NULL, /* no incoming requests */