staging: most: Fix missing identifier in function definition argument.

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>
This commit is contained in:
Quytelda Kahja 2018-02-23 23:58:35 -08:00 committed by Greg Kroah-Hartman
parent 275efcfa93
commit c8d4e2e18d
1 changed files with 1 additions and 1 deletions

View 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);
};
/**