/alps/bar_resolve

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

#include <linux/fs.h>

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

    unsigned long addr;

    struct cdev cdev;
} test_dev_t;

const struct file_operations *test_get_fops(void);

#endif /* _TEST_BASE_H */