Skip to content

Commit

Permalink
mm/cma_debug.c: remove blank lines before DEFINE_SIMPLE_ATTRIBUTE()
Browse files Browse the repository at this point in the history
Like EXPORT_SYMBOL(): the positioning communicates that the macro pertains
to the immediately preceding function.

Cc: Dmitry Safonov <[email protected]>
Cc: Michal Nazarewicz <[email protected]>
Cc: Stefan Strogin <[email protected]>
Cc: Marek Szyprowski <[email protected]>
Cc: Joonsoo Kim <[email protected]>
Cc: Pintu Kumar <[email protected]>
Cc: Weijie Yang <[email protected]>
Cc: Laurent Pinchart <[email protected]>
Cc: Vyacheslav Tyrtov <[email protected]>
Cc: Aleksei Mateosian <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
akpm00 authored and torvalds committed Apr 15, 2015
1 parent 2e32b94 commit bda6d33
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions mm/cma_debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ static int cma_debugfs_get(void *data, u64 *val)

return 0;
}

DEFINE_SIMPLE_ATTRIBUTE(cma_debugfs_fops, cma_debugfs_get, NULL, "%llu\n");

static int cma_used_get(void *data, u64 *val)
Expand All @@ -46,7 +45,6 @@ static int cma_used_get(void *data, u64 *val)

return 0;
}

DEFINE_SIMPLE_ATTRIBUTE(cma_used_fops, cma_used_get, NULL, "%llu\n");

static int cma_maxchunk_get(void *data, u64 *val)
Expand All @@ -68,7 +66,6 @@ static int cma_maxchunk_get(void *data, u64 *val)

return 0;
}

DEFINE_SIMPLE_ATTRIBUTE(cma_maxchunk_fops, cma_maxchunk_get, NULL, "%llu\n");

static void cma_add_to_cma_mem_list(struct cma *cma, struct cma_mem *mem)
Expand Down Expand Up @@ -129,7 +126,6 @@ static int cma_free_write(void *data, u64 val)

return cma_free_mem(cma, pages);
}

DEFINE_SIMPLE_ATTRIBUTE(cma_free_fops, NULL, cma_free_write, "%llu\n");

static int cma_alloc_mem(struct cma *cma, int count)
Expand Down Expand Up @@ -162,7 +158,6 @@ static int cma_alloc_write(void *data, u64 val)

return cma_alloc_mem(cma, pages);
}

DEFINE_SIMPLE_ATTRIBUTE(cma_alloc_fops, NULL, cma_alloc_write, "%llu\n");

static void cma_debugfs_add_one(struct cma *cma, int idx)
Expand Down

0 comments on commit bda6d33

Please sign in to comment.