Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c8d4e2e1 authored by Quytelda Kahja's avatar Quytelda Kahja Committed by Greg Kroah-Hartman
Browse files

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: default avatarQuytelda Kahja <quytelda@tamalin.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 275efcfa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);
};

/**