Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 18283ea7 authored by Wei Liu's avatar Wei Liu Committed by Konrad Rzeszutek Wilk
Browse files

xen-evtchn: correct comment and error output



The evtchn device has been moved to /dev/xen. Also change log level to
KERN_ERR as other xen drivers.

Signed-off-by: default avatarWei Liu <wei.liu2@citrix.com>
Signed-off-by: default avatarKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
parent 22230c18
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -534,10 +534,10 @@ static int __init evtchn_init(void)

	spin_lock_init(&port_user_lock);

	/* Create '/dev/misc/evtchn'. */
	/* Create '/dev/xen/evtchn'. */
	err = misc_register(&evtchn_miscdev);
	if (err != 0) {
		printk(KERN_ALERT "Could not register /dev/misc/evtchn\n");
		printk(KERN_ERR "Could not register /dev/xen/evtchn\n");
		return err;
	}