struct imx_port *sport = (struct imx_port *)port;
        struct scatterlist *sgl = &sport->tx_sgl[0];
        unsigned long temp;
-       int i = 100, ubir, ubmr, ubrc, uts;
+       int i = 100, ubir, ubmr, uts;
 
        if (!sport->dma_chan_tx)
                return;
         */
        ubir = readl(sport->port.membase + UBIR);
        ubmr = readl(sport->port.membase + UBMR);
-       ubrc = readl(sport->port.membase + UBRC);
        uts = readl(sport->port.membase + IMX21_UTS);
 
        temp = readl(sport->port.membase + UCR2);
        /* Restore the registers */
        writel(ubir, sport->port.membase + UBIR);
        writel(ubmr, sport->port.membase + UBMR);
-       writel(ubrc, sport->port.membase + UBRC);
        writel(uts, sport->port.membase + IMX21_UTS);
 }