Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _LINUX_CDEV_H |
| 2 | #define _LINUX_CDEV_H |
| 3 | #ifdef __KERNEL__ |
| 4 | |
Jan Engelhardt | 5ec68b2 | 2006-12-06 20:36:14 -0800 | [diff] [blame] | 5 | #include <linux/kobject.h> |
| 6 | #include <linux/kdev_t.h> |
| 7 | #include <linux/list.h> |
| 8 | |
Jan Engelhardt | 3d8b303 | 2007-01-29 13:19:56 -0800 | [diff] [blame] | 9 | struct file_operations; |
| 10 | struct inode; |
| 11 | struct module; |
| 12 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | struct cdev { |
| 14 | struct kobject kobj; |
| 15 | struct module *owner; |
Arjan van de Ven | 99ac48f | 2006-03-28 01:56:41 -0800 | [diff] [blame] | 16 | const struct file_operations *ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | struct list_head list; |
| 18 | dev_t dev; |
| 19 | unsigned int count; |
| 20 | }; |
| 21 | |
Arjan van de Ven | 99ac48f | 2006-03-28 01:56:41 -0800 | [diff] [blame] | 22 | void cdev_init(struct cdev *, const struct file_operations *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
| 24 | struct cdev *cdev_alloc(void); |
| 25 | |
| 26 | void cdev_put(struct cdev *p); |
| 27 | |
| 28 | int cdev_add(struct cdev *, dev_t, unsigned); |
| 29 | |
| 30 | void cdev_del(struct cdev *); |
| 31 | |
| 32 | void cd_forget(struct inode *); |
| 33 | |
David Howells | 5da6185 | 2006-09-27 01:50:16 -0700 | [diff] [blame] | 34 | extern struct backing_dev_info directly_mappable_cdev_bdi; |
| 35 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #endif |
| 37 | #endif |