1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* Copyright (c) 2020 Rockchip Electronics Co., Ltd. */ 3 4 #ifndef _RKISP_PROCFS_H 5 #define _RKISP_PROCFS_H 6 7 #ifdef CONFIG_PROC_FS 8 int rkisp_proc_init(struct rkisp_device *dev); 9 void rkisp_proc_cleanup(struct rkisp_device *dev); 10 #else rkisp_proc_init(struct rkisp_device * dev)11static inline int rkisp_proc_init(struct rkisp_device *dev) 12 { 13 return 0; 14 } rkisp_proc_cleanup(struct rkisp_device * dev)15static inline void rkisp_proc_cleanup(struct rkisp_device *dev) 16 { 17 18 } 19 #endif 20 21 #endif 22