Files
linux-nv-oot/drivers/nvpps/nvpps_platforms.h
Sheetal Tigadoli c543d5bfa4 drivers:nvpps:isolate platform specific of_match table
isolate platform specific of_match table into separate
file so that n1auto platform support can be added
without modifying any of the nvpps driver files

bug 5175333

Signed-off-by: Sheetal Tigadoli <stigadoli@nvidia.com>
Change-Id: I020e9156bbd538e568d3b2ae11165834466a3f2f
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3337808
GVS: buildbot_gerritrpt <buildbot_gerritrpt@nvidia.com>
Reviewed-by: Kiran Kumar Bobbu <kbobbu@nvidia.com>
Reviewed-by: Sumeet Gupta <sumeetg@nvidia.com>
2025-07-24 10:20:35 +00:00

20 lines
552 B
C

// SPDX-License-Identifier: GPL-2.0-only
// SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#ifndef __NVPPS_PLATFORMS_H__
#define __NVPPS_PLATFORMS_H__
#include <linux/of_device.h>
#include "nvpps_t23x.h"
#include "nvpps_t26x.h"
static const struct of_device_id nvpps_of_table[] = {
{ .compatible = "nvidia,tegra234-nvpps", .data = &tegra234_chip_ops },
{ .compatible = "nvidia,tegra264-nvpps", .data = &tegra264_chip_ops },
{ /* sentinel */ }
};
MODULE_DEVICE_TABLE(of, nvpps_of_table);
#endif