Skip to content

Commit

Permalink
mm-uninline-and-cleanup-page-mapping-related-helpers-checkpatch-fixes
Browse files Browse the repository at this point in the history
ERROR: "foo * bar" should be "foo *bar"
torvalds#73: FILE: mm/util.c:328:
+static inline void * __page_rmapping(struct page *page)

total: 1 errors, 0 warnings, 90 lines checked

./patches/mm-uninline-and-cleanup-page-mapping-related-helpers.patch has style problems, please review.

If any of these errors are false positives, please report
them to the maintainer, see CHECKPATCH in MAINTAINERS.

Please run checkpatch prior to sending patches

Cc: "Kirill A. Shutemov" <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
  • Loading branch information
akpm00 authored and sfrothwell committed Apr 7, 2015
1 parent 0a3e2c6 commit 62feaab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mm/util.c
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ void kvfree(const void *addr)
}
EXPORT_SYMBOL(kvfree);

static inline void * __page_rmapping(struct page *page)
static inline void *__page_rmapping(struct page *page)
{
unsigned long mapping;

Expand Down

0 comments on commit 62feaab

Please sign in to comment.