This commit was manufactured by cvs2svn to create tag 'before-xenU'.
[linux-2.6.git] / include / linux / miscdevice.h
index 209f6ff..3170e1c 100644 (file)
 #define MICROCODE_MINOR                184
 #define MWAVE_MINOR    219             /* ACP/Mwave Modem */
 #define MPT_MINOR      220
+#define CRASH_DUMP_MINOR   230         /* LKCD */
 #define MISC_DYNAMIC_MINOR 255
 
 #define TUN_MINOR           200
 #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];
 };