From e2b55e1a2cc917ce42bf056b946c12979bfa418a Mon Sep 17 00:00:00 2001 From: Mikko Perttunen Date: Wed, 7 Dec 2022 12:23:26 +0200 Subject: [PATCH] gpu: host1x-fence: Add Tegra234 compatible string To allow detection of host1x instances on Tegra234, add the corresponding compatible string. Signed-off-by: Mikko Perttunen Change-Id: Idf3259403793faeedd467e3b3fd012acb468e608 Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2823261 Reviewed-by: Deepak Kumar Badgaiyan GVS: Gerrit_Virtual_Submit Tested-by: Deepak Kumar Badgaiyan --- drivers/gpu/host1x-fence/dev.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/host1x-fence/dev.c b/drivers/gpu/host1x-fence/dev.c index 844f57a2..2861a76c 100644 --- a/drivers/gpu/host1x-fence/dev.c +++ b/drivers/gpu/host1x-fence/dev.c @@ -35,6 +35,7 @@ static int dev_file_open(struct inode *inode, struct file *file) static const struct of_device_id host1x_match[] = { { .compatible = "nvidia,tegra186-host1x", }, { .compatible = "nvidia,tegra194-host1x", }, + { .compatible = "nvidia,tegra234-host1x", }, {}, };