mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-22 09:11:26 +03:00
Fix CDI and ISC driver errors when building for kstable (6.0.0) Bug 3831575 Change-Id: Ie37be0dbe9c579ec396006fb466125b1e7e77e3f Signed-off-by: Frank Chen <frankc@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2821524 Reviewed-by: Igor Mitsyanko <imitsyanko@nvidia.com> Reviewed-by: Justin Kim (SW-TEGRA) <juskim@nvidia.com> Reviewed-by: Shiva Dubey <sdubey@nvidia.com> GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
25 lines
509 B
C
25 lines
509 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2015-2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
*/
|
|
|
|
#ifndef __UAPI_ISC_DEV_H__
|
|
#define __UAPI_ISC_DEV_H__
|
|
|
|
#include <linux/ioctl.h>
|
|
#include <linux/types.h>
|
|
|
|
#define ISC_DEV_PKG_FLAG_WR 1
|
|
|
|
#define ISC_DEV_IOCTL_RW _IOW('o', 1, struct isc_dev_package)
|
|
|
|
struct __attribute__ ((__packed__)) isc_dev_package {
|
|
__u16 offset;
|
|
__u16 offset_len;
|
|
__u32 size;
|
|
__u32 flags;
|
|
unsigned long buffer;
|
|
};
|
|
|
|
#endif /* __UAPI_ISC_DEV_H__ */
|