]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - include/linux/miscdevice.h
Merge branch 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6
[linux-2.6-omap-h63xx.git] / include / linux / miscdevice.h
index 5b584dafb5a6d4384f9b3169b2500d8cf0c3b518..326da7d500c73953624093bd6cb9ae995d8e1725 100644 (file)
 #define        HPET_MINOR           228
 
 struct device;
-struct class_device;
 
 struct miscdevice  {
        int minor;
        const char *name;
        const struct file_operations *fops;
        struct list_head list;
-       struct device *dev;
-       struct class_device *class;
-       char devfs_name[64];
+       struct device *parent;
+       struct device *this_device;
 };
 
 extern int misc_register(struct miscdevice * misc);