summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorViresh Kumar <viresh.kumar@linaro.org>2016-06-09 16:34:38 +0530
committerGreg Kroah-Hartman <gregkh@google.com>2016-06-09 17:28:02 -0700
commit8a285fed1af3b9aae5e63ff3135fb9a0bf5d2c3c (patch)
tree908a468d4e1940949d22c35d32d5149a5588a06a
parent129a6fbe7648987b23a87d5d9c4fbf0780c528ed (diff)
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>
-rw-r--r--drivers/staging/greybus/greybus_id.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/greybus/greybus_id.h b/drivers/staging/greybus/greybus_id.h
index c91e7be0451c..4bb1fc1b811d 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 */