summaryrefslogtreecommitdiffstats
path: root/drivers/staging/greybus/interface.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/staging/greybus/interface.h')
-rw-r--r--drivers/staging/greybus/interface.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/staging/greybus/interface.h b/drivers/staging/greybus/interface.h
index d4c55abae258..96caabc8a73f 100644
--- a/drivers/staging/greybus/interface.h
+++ b/drivers/staging/greybus/interface.h
@@ -10,6 +10,9 @@
#ifndef __INTERFACE_H
#define __INTERFACE_H
+#define GB_INTERFACE_QUIRK_NO_CPORT_FEATURES BIT(0)
+#define GB_INTERFACE_QUIRK_NO_INTERFACE_VERSION BIT(1)
+
struct gb_interface {
struct device dev;
struct gb_control *control;
@@ -36,8 +39,8 @@ struct gb_interface {
struct gb_host_device *hd;
- /* The interface needs to boot over unipro */
- bool boot_over_unipro;
+ unsigned long quirks;
+
bool disconnected;
};
#define to_gb_interface(d) container_of(d, struct gb_interface, dev)