WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-ppc-devel

[XenPPC] [pushed]all uart members should be unsigned

changeset:   9659:53d54257e98d
user:        jimix@xxxxxxxxxxxxxxxxxxxxx
date:        Tue Mar 28 10:15:19 2006 -0500
summary:     all uart members should be unsigned

diff -r 7cdae181971d -r 53d54257e98d xen/drivers/char/ns16550.c
--- a/xen/drivers/char/ns16550.c        Mon Mar 27 16:52:31 2006 -0500
+++ b/xen/drivers/char/ns16550.c        Tue Mar 28 10:15:19 2006 -0500
@@ -27,7 +27,7 @@ string_param("com2", opt_com2);
 string_param("com2", opt_com2);
 
 static struct ns16550 {
-    int baud, data_bits, parity, stop_bits, irq;
+    unsigned int baud, data_bits, parity, stop_bits, irq;
     unsigned long io_base;   /* I/O port or memory-mapped I/O address. */
     char *remapped_io_base;  /* Remapped virtual address of mmap I/O.  */ 
     /* UART with IRQ line: interrupt-driven I/O. */



_______________________________________________
Xen-ppc-devel mailing list
Xen-ppc-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-ppc-devel

<Prev in Thread] Current Thread [Next in Thread>
  • [XenPPC] [pushed]all uart members should be unsigned, jimix <=