* [PATCH] name the xencons driver
@ 2005-12-13 22:16 Alex Williamson
0 siblings, 0 replies; only message in thread
From: Alex Williamson @ 2005-12-13 22:16 UTC (permalink / raw)
To: Keir.Fraser; +Cc: xen-devel
Keir,
Here's one other trivial patch for the xen console that I noticed.
The current driver doesn't set it's driver_name field. This results in
an "unknown" driver when you cat /proc/tty/drivers. We might was well
give it a name. I have no attachment to "xencons" if you'd like to
change it to something else. Thanks,
Alex
Signed-off-by: Alex Williamson <alex.williamson@hp.com>
---
diff -r 0255f48b757f linux-2.6-xen-sparse/drivers/xen/console/console.c
--- a/linux-2.6-xen-sparse/drivers/xen/console/console.c Sun Dec 4 19:12:00 2005
+++ b/linux-2.6-xen-sparse/drivers/xen/console/console.c Tue Dec 13 15:05:01 2005
@@ -628,6 +630,7 @@
if (xencons_driver == NULL)
return -ENOMEM;
+ DRV(xencons_driver)->driver_name = "xencons";
DRV(xencons_driver)->major = TTY_MAJOR;
DRV(xencons_driver)->type = TTY_DRIVER_TYPE_SERIAL;
DRV(xencons_driver)->subtype = SERIAL_TYPE_NORMAL;
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-12-13 22:16 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-12-13 22:16 [PATCH] name the xencons driver Alex Williamson
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.