#include <linux/platform_device.h>
 
 static struct dtpm_node __initdata rk3399_hierarchy[] = {
-       [0]{ .name = "rk3399",
-            .type = DTPM_NODE_VIRTUAL },
-       [1]{ .name = "package",
-            .type = DTPM_NODE_VIRTUAL,
-            .parent = &rk3399_hierarchy[0] },
-       [2]{ .name = "/cpus/cpu@0",
-            .type = DTPM_NODE_DT,
-            .parent = &rk3399_hierarchy[1] },
-       [3]{ .name = "/cpus/cpu@1",
-            .type = DTPM_NODE_DT,
-            .parent = &rk3399_hierarchy[1] },
-       [4]{ .name = "/cpus/cpu@2",
-            .type = DTPM_NODE_DT,
-            .parent = &rk3399_hierarchy[1] },
-       [5]{ .name = "/cpus/cpu@3",
-            .type = DTPM_NODE_DT,
-            .parent = &rk3399_hierarchy[1] },
-       [6]{ .name = "/cpus/cpu@100",
-            .type = DTPM_NODE_DT,
-            .parent = &rk3399_hierarchy[1] },
-       [7]{ .name = "/cpus/cpu@101",
-            .type = DTPM_NODE_DT,
-            .parent = &rk3399_hierarchy[1] },
-       [8]{ .name = "/gpu@ff9a0000",
-            .type = DTPM_NODE_DT,
-            .parent = &rk3399_hierarchy[1] },
-       [9]{ /* sentinel */ }
+       [0] = { .name = "rk3399",
+               .type = DTPM_NODE_VIRTUAL },
+       [1] = { .name = "package",
+               .type = DTPM_NODE_VIRTUAL,
+               .parent = &rk3399_hierarchy[0] },
+       [2] = { .name = "/cpus/cpu@0",
+               .type = DTPM_NODE_DT,
+               .parent = &rk3399_hierarchy[1] },
+       [3] = { .name = "/cpus/cpu@1",
+               .type = DTPM_NODE_DT,
+               .parent = &rk3399_hierarchy[1] },
+       [4] = { .name = "/cpus/cpu@2",
+               .type = DTPM_NODE_DT,
+               .parent = &rk3399_hierarchy[1] },
+       [5] = { .name = "/cpus/cpu@3",
+               .type = DTPM_NODE_DT,
+               .parent = &rk3399_hierarchy[1] },
+       [6] = { .name = "/cpus/cpu@100",
+               .type = DTPM_NODE_DT,
+               .parent = &rk3399_hierarchy[1] },
+       [7] = { .name = "/cpus/cpu@101",
+               .type = DTPM_NODE_DT,
+               .parent = &rk3399_hierarchy[1] },
+       [8] = { .name = "/gpu@ff9a0000",
+               .type = DTPM_NODE_DT,
+               .parent = &rk3399_hierarchy[1] },
+       [9] = { /* sentinel */ }
 };
 
 static struct of_device_id __initdata rockchip_dtpm_match_table[] = {