[PATCH -next] mm/ptdump: fix a -Wold-style-declaration warning

From: Qian Cai
Date: Mon Nov 04 2019 - 14:23:19 EST


The -next commit "mm: add generic ptdump" [1] introduced a GCC
compilation warning,

mm/ptdump.c:123:1: warning: 'static' is not at beginning of declaration
[-Wold-style-declaration]
const static struct mm_walk_ops ptdump_ops = {
^~~~~

[1] http://lkml.kernel.org/r/20191028135910.33253-20-steven.price@xxxxxxx

Signed-off-by: Qian Cai <cai@xxxxxx>
---
mm/ptdump.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mm/ptdump.c b/mm/ptdump.c
index 5d349311e77e..a30ea0cf6c5f 100644
--- a/mm/ptdump.c
+++ b/mm/ptdump.c
@@ -120,7 +120,7 @@ static int ptdump_hole(unsigned long addr, unsigned long next,
return 0;
}

-const static struct mm_walk_ops ptdump_ops = {
+static const struct mm_walk_ops ptdump_ops = {
.pgd_entry = ptdump_pgd_entry,
.p4d_entry = ptdump_p4d_entry,
.pud_entry = ptdump_pud_entry,
--
1.8.3.1