You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
440 B
22 lines
440 B
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright (c) 2020 Rockchip Electronics Co., Ltd. */
|
|
|
|
#ifndef _RKISPP_PROCFS_H
|
|
#define _RKISPP_PROCFS_H
|
|
|
|
#ifdef CONFIG_PROC_FS
|
|
int rkispp_proc_init(struct rkispp_device *dev);
|
|
void rkispp_proc_cleanup(struct rkispp_device *dev);
|
|
#else
|
|
static inline int rkispp_proc_init(struct rkispp_device *dev)
|
|
{
|
|
return 0;
|
|
}
|
|
static inline void rkispp_proc_cleanup(struct rkispp_device *dev)
|
|
{
|
|
|
|
}
|
|
#endif
|
|
|
|
#endif
|