/alps/kmm

To get this branch, use:
bzr branch http://suren.me/webbzr/alps/kmm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _KMM_DEV_H
#define _KMM_DEV_H

#include <linux/fs.h>

typedef struct {
    dev_t devno;
    struct device *dev;					/**< Class device */

    struct cdev cdev;
} kmm_dev_t;

const struct file_operations *kmm_get_fops(void);

#endif /* _KMM_BASE_H */