~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to drivers/net/irda/pxaficp_ir.c

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
 
41
41
#define ICCR0_AME       (1 << 7)        /* Address match enable */
42
42
#define ICCR0_TIE       (1 << 6)        /* Transmit FIFO interrupt enable */
43
 
#define ICCR0_RIE       (1 << 5)        /* Recieve FIFO interrupt enable */
 
43
#define ICCR0_RIE       (1 << 5)        /* Receive FIFO interrupt enable */
44
44
#define ICCR0_RXE       (1 << 4)        /* Receive enable */
45
45
#define ICCR0_TXE       (1 << 3)        /* Transmit enable */
46
46
#define ICCR0_TUS       (1 << 2)        /* Transmit FIFO underrun select */
483
483
        }
484
484
 
485
485
        if (icsr0 & ICSR0_EIF) {
486
 
                /* An error in FIFO occured, or there is a end of frame */
 
486
                /* An error in FIFO occurred, or there is a end of frame */
487
487
                pxa_irda_fir_irq_eif(si, dev, icsr0);
488
488
        }
489
489