mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-22 17:25:35 +03:00
Convert automotive ISC kernel driver to OOT module. Jira CAMERASW-7592 Change-Id: I0a81b58df941ef38bf0fb3226086e13b6d68d012 Signed-off-by: Frank Chen <frankc@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2811344 Reviewed-by: Justin Kim (SW-TEGRA) <juskim@nvidia.com> Reviewed-by: Shiva Dubey <sdubey@nvidia.com> GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
22 lines
453 B
C
22 lines
453 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2015-2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
*/
|
|
|
|
#ifndef __ISC_DEV_H__
|
|
#define __ISC_DEV_H__
|
|
|
|
#include <uapi/media/isc-dev.h>
|
|
#include <linux/regmap.h>
|
|
|
|
#define MAX_ISC_NAME_LENGTH 32
|
|
|
|
struct isc_dev_platform_data {
|
|
struct device *pdev; /* parent device of isc_dev */
|
|
int reg_bits;
|
|
int val_bits;
|
|
char drv_name[MAX_ISC_NAME_LENGTH];
|
|
};
|
|
|
|
#endif /* __ISC_DEV_H__ */
|