~ubuntu-branches/ubuntu/quantal/linux-linaro-mx51/quantal

« back to all changes in this revision

Viewing changes to arch/arm/mach-ep93xx/core.c

  • Committer: Package Import Robot
  • Author(s): John Rigby, John Rigby
  • Date: 2011-09-26 10:44:23 UTC
  • Revision ID: package-import@ubuntu.com-20110926104423-3o58a3c1bj7x00rs
Tags: 3.0.0-1007.9
[ John Rigby ]

Enable crypto modules and remove crypto-modules from
exclude-module files
LP: #826021

Show diffs side-by-side

added added

removed removed

Lines of Context:
251
251
        unsigned int mcr;
252
252
 
253
253
        mcr = 0;
254
 
        if (!(mctrl & TIOCM_RTS))
 
254
        if (mctrl & TIOCM_RTS)
255
255
                mcr |= 2;
256
 
        if (!(mctrl & TIOCM_DTR))
 
256
        if (mctrl & TIOCM_DTR)
257
257
                mcr |= 1;
258
258
 
259
259
        __raw_writel(mcr, base + EP93XX_UART_MCR_OFFSET);
402
402
        }
403
403
};
404
404
 
 
405
static u64 ep93xx_eth_dma_mask = DMA_BIT_MASK(32);
 
406
 
405
407
static struct platform_device ep93xx_eth_device = {
406
408
        .name           = "ep93xx-eth",
407
409
        .id             = -1,
408
410
        .dev            = {
409
 
                .platform_data  = &ep93xx_eth_data,
 
411
                .platform_data          = &ep93xx_eth_data,
 
412
                .coherent_dma_mask      = DMA_BIT_MASK(32),
 
413
                .dma_mask               = &ep93xx_eth_dma_mask,
410
414
        },
411
415
        .num_resources  = ARRAY_SIZE(ep93xx_eth_resource),
412
416
        .resource       = ep93xx_eth_resource,