lin
2025-06-05 ed3dd9d3e7519a82bb871d5eedb24a2fa0c91f47
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