diff --git a/drivers/gpu/host1x-fence/dev.c b/drivers/gpu/host1x-fence/dev.c index fc807cea..c9c2655d 100644 --- a/drivers/gpu/host1x-fence/dev.c +++ b/drivers/gpu/host1x-fence/dev.c @@ -2,7 +2,7 @@ /* * Host1x fence UAPI * - * Copyright (c) 2022, NVIDIA Corporation. + * Copyright (c) 2022-2023, NVIDIA CORPORATION. All rights reserved. */ #include @@ -473,6 +473,12 @@ unregister_chrdev_region: return err; } +static const struct of_device_id host1x_fence_of_match[] = { + { .compatible = "nvidia,tegra234-host1x" }, + { }, +}; +MODULE_DEVICE_TABLE(of, host1x_fence_of_match); + static int __init tegra_host1x_init(void) { return host1x_uapi_init(&uapi_data);