Skip to content

Commit 646bf18

Browse files
akpm00sfrothwell
authored andcommitted
include-linux-apply-__malloc-attribute-checkpatch-fixes
ERROR: "foo * bar" should be "foo *bar" torvalds#171: FILE: include/linux/mempool.h:35: +extern void * mempool_alloc(mempool_t *pool, gfp_t gfp_mask) __malloc; Cc: Rasmus Villemoes <[email protected]> Signed-off-by: Andrew Morton <[email protected]>
1 parent e0ac3c4 commit 646bf18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/linux/mempool.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ extern mempool_t *mempool_create_node(int min_nr, mempool_alloc_t *alloc_fn,
3232

3333
extern int mempool_resize(mempool_t *pool, int new_min_nr);
3434
extern void mempool_destroy(mempool_t *pool);
35-
extern void * mempool_alloc(mempool_t *pool, gfp_t gfp_mask) __malloc;
35+
extern void *mempool_alloc(mempool_t *pool, gfp_t gfp_mask) __malloc;
3636
extern void mempool_free(void *element, mempool_t *pool);
3737

3838
/*

0 commit comments

Comments
 (0)