From: Fengguang Wu <[email protected]> Fixes sparse warning identified by Fengguang's test robot: ipc/msg.c:810:16: sparse: symbol 'find_msg' was not declared. Should it be static?
CC: Johannes Weiner <[email protected]> Signed-off-by: Peter Hurley <[email protected]> Reported-by: Fengguang Wu <[email protected]> --- msg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipc/msg.c b/ipc/msg.c index daeca13..309583c 100644 --- a/ipc/msg.c +++ b/ipc/msg.c @@ -807,7 +807,7 @@ static inline void free_copy(struct msg_msg *copy) } #endif -struct msg_msg *find_msg(struct msg_queue *msq, long *msgtyp, int mode) +static struct msg_msg *find_msg(struct msg_queue *msq, long *msgtyp, int mode) { struct msg_msg *msg; long count = 0; -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

