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:
parent
275efcfa93
commit
c8d4e2e18d
|
@ -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);
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue