From: Dan Williams Date: Sat, 16 Jan 2016 00:56:35 +0000 (-0800) Subject: frv: fix compiler warning from definition of __pmd() X-Git-Tag: v4.9.8~2863^2~55 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6d8113c75a72f80164cc68b1af45f1608f9a36c6;p=platform%2Fkernel%2Flinux-rpi3.git frv: fix compiler warning from definition of __pmd() Take into account that the pmd_t type is a array inside a struct, so it needs two levels of brackets to initialize. Otherwise, a usage of __pmd generates a warning: include/linux/mm.h:986:2: warning: missing braces around initializer [-Wmissing-braces] Signed-off-by: Dan Williams Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/arch/frv/include/asm/page.h b/arch/frv/include/asm/page.h index 8c97068..688d807 100644 --- a/arch/frv/include/asm/page.h +++ b/arch/frv/include/asm/page.h @@ -34,7 +34,7 @@ typedef struct page *pgtable_t; #define pgprot_val(x) ((x).pgprot) #define __pte(x) ((pte_t) { (x) } ) -#define __pmd(x) ((pmd_t) { (x) } ) +#define __pmd(x) ((pmd_t) { { (x) } } ) #define __pud(x) ((pud_t) { (x) } ) #define __pgd(x) ((pgd_t) { (x) } ) #define __pgprot(x) ((pgprot_t) { (x) } )