ronnie
2022-10-23 e4b2278a4015864069fc7b2eb574f5aeb7736bc6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 *  mpp.h - mpp debug file system
 *
 *  Copyright (C) 2017 yanggq <yanggq@allwinnertech.com>
 *  Copyright (C) 2017 Allwinnertech.
 *
 *    This program is free software; you can redistribute it and/or
 *    modify it under the terms of the GNU General Public License version
 *    2 as published by the Free Software Foundation.
 *
 *  mpp is for people to use instead of /proc or /sys.
 */
 
#ifndef _MPP_H_
#define _MPP_H_
 
#include <linux/fs.h>
#include <linux/seq_file.h>
#include <linux/types.h>
 
extern struct dentry *debugfs_mpp_root;
 
#endif