From: Matt Porter Date: Thu, 18 Sep 2014 19:25:43 +0000 (-0400) Subject: greybus: update GREYBUS_VERSION_[MAJOR|MINOR] to match spec X-Git-Tag: v4.9-rc1~119^2~378^2~21^2~2103 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=52adb56340b6f83d62d65e96b0f925ec8797b802;p=karo-tx-linux.git greybus: update GREYBUS_VERSION_[MAJOR|MINOR] to match spec The Greybus spec was updated to have major=0 and minor=1 so update this in the code. Signed-off-by: Matt Porter Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/greybus/greybus.h b/drivers/staging/greybus/greybus.h index 2838e44ce6fb..c9f516ab7612 100644 --- a/drivers/staging/greybus/greybus.h +++ b/drivers/staging/greybus/greybus.h @@ -20,8 +20,8 @@ /* Matches up with the Greybus Protocol specification document */ -#define GREYBUS_VERSION_MAJOR 0x01 -#define GREYBUS_VERSION_MINOR 0x00 +#define GREYBUS_VERSION_MAJOR 0x00 +#define GREYBUS_VERSION_MINOR 0x01 #define GREYBUS_DEVICE_ID_MATCH_DEVICE \ (GREYBUS_DEVICE_ID_MATCH_VENDOR | GREYBUS_DEVICE_ID_MATCH_PRODUCT)