]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
staging: greybus: operation: add private data with get/set accessors
authorBryan O'Donoghue <pure.logic@nexus-software.ie>
Mon, 6 Nov 2017 01:32:21 +0000 (01:32 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 6 Nov 2017 15:41:22 +0000 (16:41 +0100)
Asynchronous operation completion handler's lives are made easier if there
is a generic pointer that can store private data associated with the
operation. This patch adds a pointer field to struct gb_operation and
get/set methods to access that pointer.

Signed-off-by: Bryan O'Donoghue <pure.logic@nexus-software.ie>
Cc: Johan Hovold <johan@kernel.org>
Cc: Alex Elder <elder@kernel.org>
Cc: Mitch Tasman <tasman@leaflabs.com>
Cc: greybus-dev@lists.linaro.org
Cc: devel@driverdev.osuosl.org
Cc: linux-kernel@vger.kernel.org
Reviewed-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/greybus/operation.h

index 7529f01b2529203004413f9dcfffa682c8338533..bfec1e93384e6f87b621a507b159f75879a59e71 100644 (file)
@@ -105,6 +105,8 @@ struct gb_operation {
 
        int                     active;
        struct list_head        links;          /* connection->operations */
+
+       void                    *private;
 };
 
 static inline bool
@@ -206,6 +208,17 @@ static inline int gb_operation_unidirectional(struct gb_connection *connection,
                        request, request_size, GB_OPERATION_TIMEOUT_DEFAULT);
 }
 
+static inline void *gb_operation_get_data(struct gb_operation *operation)
+{
+       return operation->private;
+}
+
+static inline void gb_operation_set_data(struct gb_operation *operation,
+                                        void *data)
+{
+       operation->private = data;
+}
+
 int gb_operation_init(void);
 void gb_operation_exit(void);