Unverified Commit 13923775 authored by Arnd Bergmann's avatar Arnd Bergmann
Browse files

Merge tag 'tegra-for-6.17-firmware-fixes' of...

Merge tag 'tegra-for-6.17-firmware-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux into arm/fixes

firmware: tegra: Fixes for v6.17

This contains a simple patch to avoid a warning in the case where the
optional memory-region property is missing.

* tag 'tegra-for-6.17-firmware-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux

:
  firmware: tegra: Do not warn on missing memory-region property

Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
parents 6866b785 6131690d
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -198,7 +198,10 @@ static int tegra186_bpmp_dram_init(struct tegra_bpmp *bpmp)

	err = of_reserved_mem_region_to_resource(bpmp->dev->of_node, 0, &res);
	if (err < 0) {
		dev_warn(bpmp->dev, "failed to parse memory region: %d\n", err);
		if (err != -ENODEV)
			dev_warn(bpmp->dev,
				 "failed to parse memory region: %d\n", err);

		return err;
	}