mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-08 17:18:05 -04:00
28 lines
794 B
C
28 lines
794 B
C
/****************************************************************************
|
|
*
|
|
* Copyright (c) 2014 - 2016 Samsung Electronics Co., Ltd. All rights reserved
|
|
*
|
|
****************************************************************************/
|
|
|
|
/*
|
|
* mx140 proc interface
|
|
*/
|
|
|
|
#ifndef MXPROC_H
|
|
#define MXPROC_H
|
|
|
|
struct mxproc;
|
|
|
|
int mxproc_create_ctrl_proc_dir(struct mxproc *mxproc, struct mxman *mxman);
|
|
void mxproc_remove_ctrl_proc_dir(struct mxproc *mxproc);
|
|
int mxproc_create_info_proc_dir(struct mxproc *mxproc, struct mxman *mxman);
|
|
void mxproc_remove_info_proc_dir(struct mxproc *mxproc);
|
|
|
|
struct mxproc {
|
|
struct mxman *mxman;
|
|
struct proc_dir_entry *procfs_ctrl_dir;
|
|
u32 procfs_ctrl_dir_num;
|
|
struct proc_dir_entry *procfs_info_dir;
|
|
};
|
|
|
|
#endif /* MXPROC_H */
|