Commit 3238f82d authored by Geert Uytterhoeven's avatar Geert Uytterhoeven
Browse files

ARM: shmobile: Drop commas after dt_compat sentinels



It does not make sense to have a comma after a sentinel, as any new
elements must be added before the sentinel.

Signed-off-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
Link: https://lore.kernel.org/r/ab4acc22eebb96a0747eb301c878b24b1200736a.1646311825.git.geert+renesas@glider.be
parent 31231092
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@

static const char *const emev2_boards_compat_dt[] __initconst = {
	"renesas,emev2",
	NULL,
	NULL
};

DT_MACHINE_START(EMEV2_DT, "Generic Emma Mobile EV2 (Flattened Device Tree)")
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@

static const char *const r7s72100_boards_compat_dt[] __initconst = {
	"renesas,r7s72100",
	NULL,
	NULL
};

DT_MACHINE_START(R7S72100_DT, "Generic R7S72100 (Flattened Device Tree)")
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@

static const char *const r7s9210_boards_compat_dt[] __initconst = {
	"renesas,r7s9210",
	NULL,
	NULL
};

DT_MACHINE_START(R7S72100_DT, "Generic R7S9210 (Flattened Device Tree)")
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@

static const char *const r8a73a4_boards_compat_dt[] __initconst = {
	"renesas,r8a73a4",
	NULL,
	NULL
};

DT_MACHINE_START(R8A73A4_DT, "Generic R8A73A4 (Flattened Device Tree)")
+1 −1
Original line number Diff line number Diff line
@@ -72,7 +72,7 @@ static void __init r8a7740_generic_init(void)

static const char *const r8a7740_boards_compat_dt[] __initconst = {
	"renesas,r8a7740",
	NULL,
	NULL
};

DT_MACHINE_START(R8A7740_DT, "Generic R8A7740 (Flattened Device Tree)")
Loading