mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-20 06:20:41 +00:00
16 lines
322 B
C
16 lines
322 B
C
![]() |
/* SPDX-License-Identifier: GPL-2.0-only */
|
||
|
/*
|
||
|
* Copyright (c) 2022-2024 Qualcomm Innovation Center, Inc. All rights reserved.
|
||
|
*/
|
||
|
|
||
|
#ifndef __IRIS_VIDC_H__
|
||
|
#define __IRIS_VIDC_H__
|
||
|
|
||
|
struct iris_core;
|
||
|
|
||
|
void iris_init_ops(struct iris_core *core);
|
||
|
int iris_open(struct file *filp);
|
||
|
int iris_close(struct file *filp);
|
||
|
|
||
|
#endif
|