From: Johan Hovold Date: Tue, 19 Jan 2016 11:51:13 +0000 (+0100) Subject: greybus: greybus_protocols: remove control-protocol version X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=6bd6e148930b6f6dff7a6d664b37ba76d6d2c75e;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git greybus: greybus_protocols: remove control-protocol version Remove control-protocol version from the exported protocol definitions as it is an implementation detail that makes no sense to export. Currently gbsim uses the kernel's control-protocol version definitions directly instead of reporting the version of the protocol it actually implements. Reviewed-by: Viresh Kumar Signed-off-by: Johan Hovold Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/greybus/control.c b/drivers/staging/greybus/control.c index 12a9ecac4111..d79807c10b98 100644 --- a/drivers/staging/greybus/control.c +++ b/drivers/staging/greybus/control.c @@ -12,6 +12,11 @@ #include #include "greybus.h" +/* Highest control-protocol version supported */ +#define GB_CONTROL_VERSION_MAJOR 0 +#define GB_CONTROL_VERSION_MINOR 1 + + /* Get Manifest's size from the interface */ int gb_control_get_manifest_size_operation(struct gb_interface *intf) { diff --git a/drivers/staging/greybus/greybus_protocols.h b/drivers/staging/greybus/greybus_protocols.h index 55e99b7083f3..c563e7454d9c 100644 --- a/drivers/staging/greybus/greybus_protocols.h +++ b/drivers/staging/greybus/greybus_protocols.h @@ -115,10 +115,6 @@ struct gb_protocol_version_response { /* Control Protocol */ -/* Version of the Greybus control protocol we support */ -#define GB_CONTROL_VERSION_MAJOR 0x00 -#define GB_CONTROL_VERSION_MINOR 0x01 - /* Greybus control request types */ #define GB_CONTROL_TYPE_PROBE_AP 0x02 #define GB_CONTROL_TYPE_GET_MANIFEST_SIZE 0x03