X-Git-Url: http://pilppa.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=include%2Flinux%2Fmiscdevice.h;h=dff9ea32606a56e986fd6a2cc62375675eec61db;hb=cdb7532f7be35c3675b1aed54d10e378014618b6;hp=5b584dafb5a6d4384f9b3169b2500d8cf0c3b518;hpb=e21a2b0cc5849e76434b37aff3a4b502c772f191;p=linux-2.6-omap-h63xx.git diff --git a/include/linux/miscdevice.h b/include/linux/miscdevice.h index 5b584dafb5a..dff9ea32606 100644 --- a/include/linux/miscdevice.h +++ b/include/linux/miscdevice.h @@ -29,18 +29,17 @@ #define TUN_MINOR 200 #define HPET_MINOR 228 +#define KVM_MINOR 232 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);