diff options
Diffstat (limited to 'arch/arm/plat-omap/include/mach/mcbsp.h')
-rw-r--r-- | arch/arm/plat-omap/include/mach/mcbsp.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/arm/plat-omap/include/mach/mcbsp.h b/arch/arm/plat-omap/include/mach/mcbsp.h index 6eb44a92871..a3074f2fb7c 100644 --- a/arch/arm/plat-omap/include/mach/mcbsp.h +++ b/arch/arm/plat-omap/include/mach/mcbsp.h @@ -315,7 +315,7 @@ struct omap_mcbsp_ops { }; struct omap_mcbsp_platform_data { - u32 virt_base; + unsigned long phys_base; u8 dma_rx_sync, dma_tx_sync; u16 rx_irq, tx_irq; struct omap_mcbsp_ops *ops; @@ -324,7 +324,8 @@ struct omap_mcbsp_platform_data { struct omap_mcbsp { struct device *dev; - u32 io_base; + unsigned long phys_base; + void __iomem *io_base; u8 id; u8 free; omap_mcbsp_word_length rx_word_length; |