Files
linux-apfs/include/linux/cdev.h
T

28 lines
472 B
C
Raw Normal View History

2005-04-16 15:20:36 -07:00
#ifndef _LINUX_CDEV_H
#define _LINUX_CDEV_H
#ifdef __KERNEL__
struct cdev {
struct kobject kobj;
struct module *owner;
2006-03-28 01:56:41 -08:00
const struct file_operations *ops;
2005-04-16 15:20:36 -07:00
struct list_head list;
dev_t dev;
unsigned int count;
};
2006-03-28 01:56:41 -08:00
void cdev_init(struct cdev *, const struct file_operations *);
2005-04-16 15:20:36 -07:00
struct cdev *cdev_alloc(void);
void cdev_put(struct cdev *p);
int cdev_add(struct cdev *, dev_t, unsigned);
void cdev_del(struct cdev *);
void cd_forget(struct inode *);
#endif
#endif