From: Viresh Kumar Date: Sat, 8 Aug 2015 04:55:41 +0000 (+0530) Subject: greybus: vibrator: Use (already defined) major/minor macros X-Git-Tag: v4.9-rc1~119^2~378^2~21^2~1283^2~24 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=f0a1698f18722fccb920448285b8fc87f793870a;p=karo-tx-linux.git 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 Signed-off-by: Greg Kroah-Hartman --- 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 */