From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Williamson Subject: [PATCH] name the xencons driver Date: Tue, 13 Dec 2005 15:16:33 -0700 Message-ID: <1134512193.12848.18.camel@localhost> Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit Return-path: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: Keir.Fraser@cl.cam.ac.uk Cc: xen-devel List-Id: xen-devel@lists.xenproject.org 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 --- 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;