1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Support for Medifield PNW Camera Imaging ISP subsystem.
4  *
5  * Copyright (c) 2010 Intel Corporation. All Rights Reserved.
6  *
7  * Copyright (c) 2010 Silicon Hive www.siliconhive.com.
8  */
9 
10 #ifndef	__ATOMISP_FOPS_H__
11 #define	__ATOMISP_FOPS_H__
12 #include "atomisp_subdev.h"
13 
14 /*
15  * Memory help functions for image frame and private parameters
16  */
17 
18 int atomisp_qbuffers_to_css(struct atomisp_sub_device *asd);
19 
20 extern const struct vb2_ops atomisp_vb2_ops;
21 extern const struct v4l2_file_operations atomisp_fops;
22 
23 #endif /* __ATOMISP_FOPS_H__ */
24