From: Viresh Kumar <viresh.kumar@linaro.org>
Date: Thu, 9 Jun 2016 11:04:38 +0000 (+0530)
Subject: greybus: Use BIT(2) for GREYBUS_ID_MATCH_CLASS
X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=8a285fed1af3b9aae5e63ff3135fb9a0bf5d2c3c;p=linux.git

greybus: Use BIT(2) for GREYBUS_ID_MATCH_CLASS

Bit 2 was left unused, use it.

Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
---

diff --git a/drivers/staging/greybus/greybus_id.h b/drivers/staging/greybus/greybus_id.h
index c91e7be0451c2..4bb1fc1b811de 100644
--- a/drivers/staging/greybus/greybus_id.h
+++ b/drivers/staging/greybus/greybus_id.h
@@ -21,6 +21,6 @@ struct greybus_bundle_id {
 /* Used to match the greybus_bundle_id */
 #define GREYBUS_ID_MATCH_VENDOR		BIT(0)
 #define GREYBUS_ID_MATCH_PRODUCT	BIT(1)
-#define GREYBUS_ID_MATCH_CLASS		BIT(3)
+#define GREYBUS_ID_MATCH_CLASS		BIT(2)
 
 #endif /* __LINUX_GREYBUS_ID_H */