Commit 85a04428 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

greybus: operation: fix up sparse warning

gb_connection_recv_request should be static, so mark it as such.
Signed-off-by: default avatarGreg Kroah-Hartman <greg@kroah.com>
parent e5fbc073
......@@ -616,8 +616,9 @@ EXPORT_SYMBOL_GPL(greybus_data_sent);
* This is called in interrupt context, so just copy the incoming
* data into the request buffer and handle the rest via workqueue.
*/
void gb_connection_recv_request(struct gb_connection *connection,
u16 operation_id, u8 type, void *data, size_t size)
static void gb_connection_recv_request(struct gb_connection *connection,
u16 operation_id, u8 type, void *data,
size_t size)
{
struct gb_operation *operation;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment