aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuytelda Kahja <quytelda@tamalin.org>2018-02-23 23:58:35 -0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-03-01 17:21:49 +0100
commitc8d4e2e18d5292cf8a888362f9f196aaeb540bba (patch)
treeceaf3af85023334bd564e6c992483044e27d558d
parentstaging: most: Remove unnecessary OOM messages. (diff)
downloadlinux-dev-c8d4e2e18d5292cf8a888362f9f196aaeb540bba.tar.xz
linux-dev-c8d4e2e18d5292cf8a888362f9f196aaeb540bba.zip
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>
-rw-r--r--drivers/staging/most/core.h2
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);
};
/**