Unverified Commit 48a68a4e authored by Arnd Bergmann's avatar Arnd Bergmann
Browse files

Merge tag 'renesas-arm-soc-for-v5.19-tag1' of...

Merge tag 'renesas-arm-soc-for-v5.19-tag1' of git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel into arm/soc

Renesas ARM SoC updates for v5.19

  - Drop commas after sentinels.

* tag 'renesas-arm-soc-for-v5.19-tag1' of git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel:
  ARM: shmobile: rcar-gen2: Drop comma after OF match table sentinel
  ARM: shmobile: Drop commas after dt_compat sentinels

Link: https://lore.kernel.org/r/cover.1651828611.git.geert+renesas@glider.be


Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
parents ff9fb2e8 7bc53f59
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -67,7 +67,7 @@ static const struct of_device_id rcar_gen2_quirk_match[] = {
	{ .compatible = "dlg,da9063", .data = &da9063_msg },
	{ .compatible = "dlg,da9063l", .data = &da9063_msg },
	{ .compatible = "dlg,da9210", .data = &da9210_msg },
	{},
	{ /* sentinel */ }
};

static int regulator_quirk_notify(struct notifier_block *nb,
+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)")
Loading