mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-09 01:28:05 -04:00
Fixed MTP to work with TWRP
This commit is contained in:
commit
f6dfaef42e
50820 changed files with 20846062 additions and 0 deletions
24
fs/proc/cpuinfo.c
Normal file
24
fs/proc/cpuinfo.c
Normal file
|
@ -0,0 +1,24 @@
|
|||
#include <linux/fs.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/proc_fs.h>
|
||||
#include <linux/seq_file.h>
|
||||
|
||||
extern const struct seq_operations cpuinfo_op;
|
||||
static int cpuinfo_open(struct inode *inode, struct file *file)
|
||||
{
|
||||
return seq_open(file, &cpuinfo_op);
|
||||
}
|
||||
|
||||
static const struct file_operations proc_cpuinfo_operations = {
|
||||
.open = cpuinfo_open,
|
||||
.read = seq_read,
|
||||
.llseek = seq_lseek,
|
||||
.release = seq_release,
|
||||
};
|
||||
|
||||
static int __init proc_cpuinfo_init(void)
|
||||
{
|
||||
proc_create("cpuinfo", 0, NULL, &proc_cpuinfo_operations);
|
||||
return 0;
|
||||
}
|
||||
fs_initcall(proc_cpuinfo_init);
|
Loading…
Add table
Add a link
Reference in a new issue