/*
  * private helper fn to determine if check is in open interval (lo,hi)
  */
-static bool addr_check(unsigned check, unsigned lo, unsigned hi)
+static bool addr_check(unsigned int check, unsigned int lo, unsigned int hi)
 {
        return check - (lo + 1) < (hi - 1) - lo;
 }
  * The 'apparent' size will be rounded up to next greater aligned size.
  * Returns 0 if no error, otherwise an error code
  */
-int dma_fifo_alloc(struct dma_fifo *fifo, int size, unsigned align,
+int dma_fifo_alloc(struct dma_fifo *fifo, int size, unsigned int align,
                   int tx_limit, int open_limit, gfp_t gfp_mask)
 {
        int capacity;
  */
 int dma_fifo_out_pend(struct dma_fifo *fifo, struct dma_pending *pended)
 {
-       unsigned len, n, ofs, l, limit;
+       unsigned int len, n, ofs, l, limit;
 
        if (!fifo->data)
                return -ENOENT;
        n = len;
        ofs = fifo->out % fifo->capacity;
        l = fifo->capacity - ofs;
-       limit = min_t(unsigned, l, fifo->tx_limit);
+       limit = min_t(unsigned int, l, fifo->tx_limit);
        if (n > limit) {
                n = limit;
                fifo->out += limit;
 
 #define DMA_FIFO_GUARD 3   /* # of cache lines to reserve for the guard area */
 
 struct dma_fifo {
-       unsigned         in;
-       unsigned         out;           /* updated when dma is pended         */
-       unsigned         done;          /* updated upon dma completion        */
+       unsigned int     in;
+       unsigned int     out;           /* updated when dma is pended         */
+       unsigned int     done;          /* updated upon dma completion        */
        struct {
                unsigned corrupt:1;
        };
        int              guard;         /* ofs of guard area                  */
        int              capacity;      /* size + reserved                    */
        int              avail;         /* # of unused bytes in fifo          */
-       unsigned         align;         /* must be power of 2                 */
+       unsigned int     align;         /* must be power of 2                 */
        int              tx_limit;      /* max # of bytes per dma transaction */
        int              open_limit;    /* max # of outstanding allowed       */
        int              open;          /* # of outstanding dma transactions  */
 struct dma_pending {
        struct list_head link;
        void             *data;
-       unsigned         len;
-       unsigned         next;
-       unsigned         out;
+       unsigned int     len;
+       unsigned int     next;
+       unsigned int     out;
 };
 
 static inline void dp_mark_completed(struct dma_pending *dp)
 }
 
 void dma_fifo_init(struct dma_fifo *fifo);
-int dma_fifo_alloc(struct dma_fifo *fifo, int size, unsigned align,
+int dma_fifo_alloc(struct dma_fifo *fifo, int size, unsigned int align,
                   int tx_limit, int open_limit, gfp_t gfp_mask);
 void dma_fifo_free(struct dma_fifo *fifo);
 void dma_fifo_reset(struct dma_fifo *fifo);
 
 
 #ifdef FWTTY_PROFILING
 
-static void fwtty_profile_fifo(struct fwtty_port *port, unsigned *stat)
+static void fwtty_profile_fifo(struct fwtty_port *port, unsigned int *stat)
 {
        spin_lock_bh(&port->lock);
        fwtty_profile_data(stat, dma_fifo_avail(&port->tx_fifo));
 {
        /* for each stat, print sum of 0 to 2^k, then individually */
        int k = 4;
-       unsigned sum;
+       unsigned int sum;
        int j;
        char t[10];
 
  * Note: in loopback, the port->lock is being held. Only use functions that
  * don't attempt to reclaim the port->lock.
  */
-static void fwtty_update_port_status(struct fwtty_port *port, unsigned status)
+static void fwtty_update_port_status(struct fwtty_port *port,
+                                    unsigned int status)
 {
-       unsigned delta;
+       unsigned int delta;
        struct tty_struct *tty;
 
        /* simulated LSR/MSR status from remote */
  *
  * Note: caller must be holding port lock
  */
-static unsigned __fwtty_port_line_status(struct fwtty_port *port)
+static unsigned int __fwtty_port_line_status(struct fwtty_port *port)
 {
-       unsigned status = 0;
+       unsigned int status = 0;
 
        /* TODO: add module param to tie RNG to DTR as well */
 
 {
        struct fwtty_peer *peer;
        int err = -ENOENT;
-       unsigned status = __fwtty_port_line_status(port);
+       unsigned int status = __fwtty_port_line_status(port);
 
        rcu_read_lock();
        peer = rcu_dereference(port->peer);
 static void fwtty_throttle_port(struct fwtty_port *port)
 {
        struct tty_struct *tty;
-       unsigned old;
+       unsigned int old;
 
        tty = tty_port_tty_get(&port->port);
        if (!tty)
 static int fwtty_rx(struct fwtty_port *port, unsigned char *data, size_t len)
 {
        int c, n = len;
-       unsigned lsr;
+       unsigned int lsr;
        int err = 0;
 
        fwtty_dbg(port, "%d\n", n);
                if (addr != port->rx_handler.offset || len != 4) {
                        rcode = RCODE_ADDRESS_ERROR;
                } else {
-                       fwtty_update_port_status(port, *(unsigned *)data);
+                       fwtty_update_port_status(port, *(unsigned int *)data);
                        rcode = RCODE_COMPLETE;
                }
                break;
        rcu_read_unlock();
 }
 
-static struct fwtty_port *fwtty_port_get(unsigned index)
+static struct fwtty_port *fwtty_port_get(unsigned int index)
 {
        struct fwtty_port *port;
 
        return rc;
 }
 
-static unsigned set_termios(struct fwtty_port *port, struct tty_struct *tty)
+static unsigned int set_termios(struct fwtty_port *port, struct tty_struct *tty)
 {
-       unsigned baud, frame;
+       unsigned int baud, frame;
 
        baud = tty_termios_baud_rate(&tty->termios);
        tty_termios_encode_baud_rate(&tty->termios, baud, baud);
                               struct tty_struct *tty)
 {
        struct fwtty_port *port = to_port(tty_port, port);
-       unsigned baud;
+       unsigned int baud;
        int err;
 
        set_bit(TTY_IO_ERROR, &tty->flags);
        return 0;
 }
 
-static int fwtty_ioctl(struct tty_struct *tty, unsigned cmd,
+static int fwtty_ioctl(struct tty_struct *tty, unsigned int cmd,
                       unsigned long arg)
 {
        struct fwtty_port *port = tty->driver_data;
 static void fwtty_set_termios(struct tty_struct *tty, struct ktermios *old)
 {
        struct fwtty_port *port = tty->driver_data;
-       unsigned baud;
+       unsigned int baud;
 
        spin_lock_bh(&port->lock);
        baud = set_termios(port, tty);
 static int fwtty_tiocmget(struct tty_struct *tty)
 {
        struct fwtty_port *port = tty->driver_data;
-       unsigned tiocm;
+       unsigned int tiocm;
 
        spin_lock_bh(&port->lock);
        tiocm = (port->mctrl & MCTRL_MASK) | (port->mstatus & ~MCTRL_MASK);
        return tiocm;
 }
 
-static int fwtty_tiocmset(struct tty_struct *tty, unsigned set, unsigned clear)
+static int fwtty_tiocmset(struct tty_struct *tty,
+                         unsigned int set, unsigned int clear)
 {
        struct fwtty_port *port = tty->driver_data;
 
 
 #ifdef FWTTY_PROFILING
 #define DISTRIBUTION_MAX_SIZE     8192
 #define DISTRIBUTION_MAX_INDEX    (ilog2(DISTRIBUTION_MAX_SIZE) + 1)
-static inline void fwtty_profile_data(unsigned stat[], unsigned val)
+static inline void fwtty_profile_data(unsigned int stat[], unsigned int val)
 {
        int n = (val) ? min(ilog2(val) + 1, DISTRIBUTION_MAX_INDEX) : 0;
        ++stat[n];
        u64                     guid;
        int                     generation;
        int                     node_id;
-       unsigned                speed;
+       unsigned int            speed;
        int                     max_payload;
        u64                     mgmt_addr;
 
 #define VIRT_CABLE_PLUG_TIMEOUT                (60 * HZ)
 
 struct stats {
-       unsigned        xchars;
-       unsigned        dropped;
-       unsigned        tx_stall;
-       unsigned        fifo_errs;
-       unsigned        sent;
-       unsigned        lost;
-       unsigned        throttled;
-       unsigned        reads[DISTRIBUTION_MAX_INDEX + 1];
-       unsigned        writes[DISTRIBUTION_MAX_INDEX + 1];
-       unsigned        txns[DISTRIBUTION_MAX_INDEX + 1];
-       unsigned        unthrottle[DISTRIBUTION_MAX_INDEX + 1];
+       unsigned int    xchars;
+       unsigned int    dropped;
+       unsigned int    tx_stall;
+       unsigned int    fifo_errs;
+       unsigned int    sent;
+       unsigned int    lost;
+       unsigned int    throttled;
+       unsigned int    reads[DISTRIBUTION_MAX_INDEX + 1];
+       unsigned int    writes[DISTRIBUTION_MAX_INDEX + 1];
+       unsigned int    txns[DISTRIBUTION_MAX_INDEX + 1];
+       unsigned int    unthrottle[DISTRIBUTION_MAX_INDEX + 1];
 };
 
 struct fwconsole_ops {
 struct fwtty_port {
        struct tty_port            port;
        struct device              *device;
-       unsigned                   index;
+       unsigned int               index;
        struct fw_serial           *serial;
        struct fw_address_handler  rx_handler;
 
 
        wait_queue_head_t          wait_tx;
        struct delayed_work        emit_breaks;
-       unsigned                   cps;
+       unsigned int               cps;
        unsigned long              break_last;
 
        struct work_struct         hangup;
 
-       unsigned                   mstatus;
+       unsigned int               mstatus;
 
        spinlock_t                 lock;
-       unsigned                   mctrl;
+       unsigned int               mctrl;
        struct delayed_work        drain;
        struct dma_fifo            tx_fifo;
        int                        max_payload;
-       unsigned                   status_mask;
-       unsigned                   ignore_mask;
-       unsigned                   break_ctl:1,
+       unsigned int               status_mask;
+       unsigned int               ignore_mask;
+       unsigned int               break_ctl:1,
                                   write_only:1,
                                   overrun:1,
                                   loopback:1;
  *     being used for isochronous traffic)
  *   2) isochronous arbitration always wins.
  */
-static inline int link_speed_to_max_payload(unsigned speed)
+static inline int link_speed_to_max_payload(unsigned int speed)
 {
        /* Max async payload is 4096 - see IEEE 1394-2008 tables 6-4, 16-18 */
        return min(512 << speed, 4096);