Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c22fb790 authored by Thierry Reding's avatar Thierry Reding
Browse files

gpu: host1x: mipi: Constify OF match table



This table is never modified and can therefore reside in read-only
memory.

Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
parent 2ed264bf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -352,7 +352,7 @@ static const struct tegra_mipi_soc tegra124_mipi_soc = {
	.hsclkpuos = 0x2,
};

static struct of_device_id tegra_mipi_of_match[] = {
static const struct of_device_id tegra_mipi_of_match[] = {
	{ .compatible = "nvidia,tegra114-mipi", .data = &tegra114_mipi_soc },
	{ .compatible = "nvidia,tegra124-mipi", .data = &tegra124_mipi_soc },
	{ },