diff options
author | Bastian Blank <waldi@debian.org> | 2010-05-28 18:43:49 -0400 |
---|---|---|
committer | Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> | 2010-05-28 18:43:49 -0400 |
commit | 376d908f52427591cef4acd172db9c3ef28676ec (patch) | |
tree | 53e5c53c588b34eb8bd9c73391c38ed62600b3a4 /drivers/xen/evtchn.c | |
parent | 3f5e554f669098c84c82ce75e7577f7e0f3fccde (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.c | 2 |
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 = { | |||
517 | 517 | ||
518 | static struct miscdevice evtchn_miscdev = { | 518 | static struct miscdevice evtchn_miscdev = { |
519 | .minor = MISC_DYNAMIC_MINOR, | 519 | .minor = MISC_DYNAMIC_MINOR, |
520 | .name = "evtchn", | 520 | .name = "xen/evtchn", |
521 | .fops = &evtchn_fops, | 521 | .fops = &evtchn_fops, |
522 | }; | 522 | }; |
523 | static int __init evtchn_init(void) | 523 | static int __init evtchn_init(void) |