staging: most: Fix missing identifier in function definition argument.
authorQuytelda Kahja <quytelda@tamalin.org>
Sat, 24 Feb 2018 07:58:35 +0000 (23:58 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 1 Mar 2018 16:21:49 +0000 (17:21 +0100)
The function pointer 'complete' in 'struct mbo' should use an identifier
for its argument.

Signed-off-by: Quytelda Kahja <quytelda@tamalin.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/most/core.h

index 74a2916..884bd71 100644 (file)
@@ -184,7 +184,7 @@ struct mbo {
        u16 buffer_length;
        u16 processed_length;
        enum mbo_status_flags status;
-       void (*complete)(struct mbo *);
+       void (*complete)(struct mbo *mbo);
 };
 
 /**