blob: 9dc3a820f738969188c28f9ed74f586804f76a6a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* include/linux/meizu-sys.h
*
* meizu technology particular classes
*
*/
#ifndef __H_MEIZU_PARTICULAR_CLASS_H__
#define __H_MEIZU_PARTICULAR_CLASS_H__
#include <linux/types.h>
#include <linux/device.h>
#include <linux/fs.h>
#include <linux/err.h>
#include <linux/sysfs.h>
int meizu_sysfslink_register(struct device *dev);
int meizu_sysfslink_register_name(struct device *dev, char *name);
void meizu_sysfslink_unregister(struct device *dev);
#endif /*__H_MEIZU_PARTICULAR_CLASS_H__*/
|