summaryrefslogtreecommitdiff
path: root/drivers/xen/evtchn.c
diff options
context:
space:
mode:
authorBastian Blank <waldi@debian.org>2010-05-28 15:43:49 -0700
committerJeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>2010-05-28 15:43:49 -0700
commit376d908f52427591cef4acd172db9c3ef28676ec (patch)
tree53e5c53c588b34eb8bd9c73391c38ed62600b3a4 /drivers/xen/evtchn.c
parent3f5e554f669098c84c82ce75e7577f7e0f3fccde (diff)
xen/evtchn: Fix name of Xen event-channel device
The Xen event-channel device is named evtchn in the kernel but always used as /dev/xen/evtchn in userspace. This patch fixes the name. Signed-off-by: Bastian Blank <waldi@debian.org> Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Diffstat (limited to 'drivers/xen/evtchn.c')
-rw-r--r--drivers/xen/evtchn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/xen/evtchn.c b/drivers/xen/evtchn.c
index 6a3a12945d02..68119f6324d4 100644
--- a/drivers/xen/evtchn.c
+++ b/drivers/xen/evtchn.c
@@ -517,7 +517,7 @@ static const struct file_operations evtchn_fops = {
static struct miscdevice evtchn_miscdev = {
.minor = MISC_DYNAMIC_MINOR,
- .name = "evtchn",
+ .name = "xen/evtchn",
.fops = &evtchn_fops,
};
static int __init evtchn_init(void)