From: Andrew Morton WARNING: line over 80 characters #30: FILE: include/linux/list.h:242: +static inline void list_splice(const struct list_head *list, struct list_head *head) total: 0 errors, 1 warnings, 16 lines checked ./patches/lists-add-const-qualifier-to-first-arg-of-list_splice-operations.patch has style problems, please review. If any of these errors are false positives report them to the maintainer, see CHECKPATCH in MAINTAINERS. Please run checkpatch prior to sending patches Cc: "Robert P. J. Day" Cc: Robert P. J. Day Signed-off-by: Andrew Morton --- include/linux/list.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN include/linux/list.h~lists-add-const-qualifier-to-first-arg-of-list_splice-operations-checkpatch-fixes include/linux/list.h --- a/include/linux/list.h~lists-add-const-qualifier-to-first-arg-of-list_splice-operations-checkpatch-fixes +++ a/include/linux/list.h @@ -338,7 +338,8 @@ static inline void __list_splice(const s * @list: the new list to add. * @head: the place to add it in the first list. */ -static inline void list_splice(const struct list_head *list, struct list_head *head) +static inline void list_splice(const struct list_head *list, + struct list_head *head) { if (!list_empty(list)) __list_splice(list, head); _