From: Alex Elder Date: Fri, 3 Oct 2014 20:05:21 +0000 (-0500) Subject: greybus: add a connection->private field X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=8a30672a526adcf797bcd3e40d4ef90d8b794f3f;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git greybus: add a connection->private field This will be used for driver-specific data for whatever drives the other end of the connection. Signed-off-by: Alex Elder Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/greybus/connection.h b/drivers/staging/greybus/connection.h index 15bdc815286d..f2588a74904a 100644 --- a/drivers/staging/greybus/connection.h +++ b/drivers/staging/greybus/connection.h @@ -25,6 +25,8 @@ struct gb_connection { struct list_head operations; atomic_t op_cycle; + + void *private; }; struct gb_connection *gb_connection_create(struct gb_interface *interface,