aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/kvm/kvm_main.c2
-rw-r--r--include/linux/miscdevice.h1
2 files changed, 2 insertions, 1 deletions
diff --git a/drivers/kvm/kvm_main.c b/drivers/kvm/kvm_main.c
index ff7c836ff001..946ed86a0595 100644
--- a/drivers/kvm/kvm_main.c
+++ b/drivers/kvm/kvm_main.c
@@ -2299,7 +2299,7 @@ static struct file_operations kvm_chardev_ops = {
2299}; 2299};
2300 2300
2301static struct miscdevice kvm_dev = { 2301static struct miscdevice kvm_dev = {
2302 MISC_DYNAMIC_MINOR, 2302 KVM_MINOR,
2303 "kvm", 2303 "kvm",
2304 &kvm_chardev_ops, 2304 &kvm_chardev_ops,
2305}; 2305};
diff --git a/include/linux/miscdevice.h b/include/linux/miscdevice.h
index 326da7d500c7..dff9ea32606a 100644
--- a/include/linux/miscdevice.h
+++ b/include/linux/miscdevice.h
@@ -29,6 +29,7 @@
29 29
30#define TUN_MINOR 200 30#define TUN_MINOR 200
31#define HPET_MINOR 228 31#define HPET_MINOR 228
32#define KVM_MINOR 232
32 33
33struct device; 34struct device;
34 35