summaryrefslogtreecommitdiffstats
path: root/drivers/staging/greybus/interface.h
diff options
context:
space:
mode:
authorViresh Kumar2015-08-12 05:49:31 +0200
committerGreg Kroah-Hartman2015-08-12 06:57:12 +0200
commit3944a454f1d5634cdcd8b8844199d67a1110dccb (patch)
tree5c128b81d1bbd4a90f7ad53cde5349079b4afdb4 /drivers/staging/greybus/interface.h
parentgreybus: loopback: handle timestamp roll-over (diff)
downloadkernel-qcow2-linux-3944a454f1d5634cdcd8b8844199d67a1110dccb.tar.gz
kernel-qcow2-linux-3944a454f1d5634cdcd8b8844199d67a1110dccb.tar.xz
kernel-qcow2-linux-3944a454f1d5634cdcd8b8844199d67a1110dccb.zip
greybus: interface: Preserve data received during hotplug event
This shall be used later to find a firmware blob for the interface, lets save it in the interface structure. Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Diffstat (limited to 'drivers/staging/greybus/interface.h')
-rw-r--r--drivers/staging/greybus/interface.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/staging/greybus/interface.h b/drivers/staging/greybus/interface.h
index e60a3705494e..38210ad4e631 100644
--- a/drivers/staging/greybus/interface.h
+++ b/drivers/staging/greybus/interface.h
@@ -28,6 +28,12 @@ struct gb_interface {
char *product_string;
u64 unique_id;
+ /* Information taken from the hotplug event */
+ u32 unipro_mfg_id;
+ u32 unipro_prod_id;
+ u32 ara_vend_id;
+ u32 ara_prod_id;
+
struct gb_module *module;
struct greybus_host_device *hd;
};