diff options
| author | Quytelda Kahja <[email protected]> | 2018-02-23 23:58:35 -0800 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2018-03-01 17:21:49 +0100 |
| commit | c8d4e2e18d5292cf8a888362f9f196aaeb540bba (patch) | |
| tree | ceaf3af85023334bd564e6c992483044e27d558d | |
| parent | 275efcfa93d5000de13c326f5afa06b4943c5a5d (diff) | |
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 <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
| -rw-r--r-- | drivers/staging/most/core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/most/core.h b/drivers/staging/most/core.h index 74a29163b68a..884bd71fafce 100644 --- a/drivers/staging/most/core.h +++ b/drivers/staging/most/core.h @@ -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); }; /** |