]> err.no Git - linux-2.6/blobdiff - include/linux/stallion.h
Merge branch 'linus' into x86/nmi
[linux-2.6] / include / linux / stallion.h
index ef5270b83d02c04218b16fa1a4f1ae5e1a20bcd6..0424d75a5aaa497638e4104aa7c423d6e377256a 100644 (file)
@@ -69,13 +69,13 @@ struct stlrq {
  */
 struct stlport {
        unsigned long           magic;
-       int                     portnr;
-       int                     panelnr;
-       int                     brdnr;
+       unsigned int            portnr;
+       unsigned int            panelnr;
+       unsigned int            brdnr;
        int                     ioaddr;
        int                     uartaddr;
-       int                     pagenr;
-       long                    istate;
+       unsigned int            pagenr;
+       unsigned long           istate;
        int                     flags;
        int                     baud_base;
        int                     custom_divisor;
@@ -95,17 +95,16 @@ struct stlport {
        struct tty_struct       *tty;
        wait_queue_head_t       open_wait;
        wait_queue_head_t       close_wait;
-       struct work_struct      tqueue;
        comstats_t              stats;
        struct stlrq            tx;
 };
 
 struct stlpanel {
        unsigned long   magic;
-       int             panelnr;
-       int             brdnr;
-       int             pagenr;
-       int             nrports;
+       unsigned int    panelnr;
+       unsigned int    brdnr;
+       unsigned int    pagenr;
+       unsigned int    nrports;
        int             iobase;
        void            *uartp;
        void            (*isr)(struct stlpanel *panelp, unsigned int iobase);
@@ -116,12 +115,12 @@ struct stlpanel {
 
 struct stlbrd {
        unsigned long   magic;
-       int             brdnr;
-       int             brdtype;
-       int             state;
-       int             nrpanels;
-       int             nrports;
-       int             nrbnks;
+       unsigned int    brdnr;
+       unsigned int    brdtype;
+       unsigned int    state;
+       unsigned int    nrpanels;
+       unsigned int    nrports;
+       unsigned int    nrbnks;
        int             irq;
        int             irqtype;
        int             (*isr)(struct stlbrd *brdp);