mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-22 09:11:26 +03:00
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>
20 lines
552 B
C
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
|