vserver 1.9.5.x5
[linux-2.6.git] / include / linux / miscdevice.h
index 209f6ff..14ceebf 100644 (file)
 #define        HPET_MINOR           228
 
 struct device;
+struct class_device;
 
-struct miscdevice 
-{
+struct miscdevice  {
        int minor;
        const char *name;
        struct file_operations *fops;
        struct list_head list;
        struct device *dev;
+       struct class_device *class;
        char devfs_name[64];
 };