Commit ee8f894f authored by Mikko Perttunen's avatar Mikko Perttunen Committed by Thierry Reding
Browse files

gpu: host1x: Allow reset to be missing



Host1x on Tegra234 does not have a software-controllable reset line.
As such, don't bail out if we don't find one in the device tree.

Signed-off-by: default avatarMikko Perttunen <mperttunen@nvidia.com>
Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
parent 939179fa
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -423,9 +423,6 @@ static int host1x_get_resets(struct host1x *host)
		return err;
	}

	if (WARN_ON(!host->resets[1].rstc))
		return -ENOENT;

	return 0;
}