drivers/pinctrl/intel/pinctrl-baytrail.c: fix build with gcc-4.4
[deliverable/linux.git] / drivers / pinctrl / intel / pinctrl-baytrail.c
index 55182fc58c6a4518b4d55993c4f3894acff0133c..677a811b3a6ffcb604d8a6c4cb836ec8dd81575e 100644 (file)
@@ -153,8 +153,10 @@ struct byt_community {
                .name                   = (n),                  \
                .pins                   = (p),                  \
                .npins                  = ARRAY_SIZE((p)),      \
-               .has_simple_funcs       = 1,            \
-               .simple_funcs           = (f),                  \
+               .has_simple_funcs       = 1,                    \
+               {                                               \
+                       .simple_funcs           = (f),          \
+               },                                              \
                .nfuncs                 = ARRAY_SIZE((f)),      \
        }
 #define PIN_GROUP_MIXED(n, p, f)                               \
@@ -163,7 +165,9 @@ struct byt_community {
                .pins                   = (p),                  \
                .npins                  = ARRAY_SIZE((p)),      \
                .has_simple_funcs       = 0,                    \
-               .mixed_funcs            = (f),                  \
+               {                                               \
+                       .mixed_funcs            = (f),          \
+               },                                              \
                .nfuncs                 = ARRAY_SIZE((f)),      \
        }
 
This page took 0.02551 seconds and 5 git commands to generate.