MIPS: Alchemy: fix deprecated compile warnings

Replace deprecated DMA_32BIT_MASK with DMA_BIT_MASK.  This is needed because
the new style platform makefiles will enable -Werror.

cc1: warnings being treated as errors
arch/mips/alchemy/devboards/db1200/platform.c:219: error: 'DMA_nnBIT_MASK' is deprecated
arch/mips/alchemy/devboards/db1200/platform.c:226: error: 'DMA_nnBIT_MASK' is deprecated
arch/mips/alchemy/devboards/db1200/platform.c:388: error: 'DMA_nnBIT_MASK' is deprecated
arch/mips/alchemy/devboards/db1200/platform.c:393: error: 'DMA_nnBIT_MASK' is deprecated

Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
To: linux-mips@linux-mips.org
Acked-by: Manuel Lauss <manuel.lauss@googlemail.com>
Patchwork: https://patchwork.linux-mips.org/patch/1427/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
FUJITA Tomonori 2010-06-24 01:26:09 +09:00 committed by Ralf Baechle
parent 4767d7ddbb
commit 25c8f83864

View File

@ -216,14 +216,14 @@ static struct resource db1200_ide_res[] = {
} }
}; };
static u64 ide_dmamask = DMA_32BIT_MASK; static u64 ide_dmamask = DMA_BIT_MASK(32);
static struct platform_device db1200_ide_dev = { static struct platform_device db1200_ide_dev = {
.name = "au1200-ide", .name = "au1200-ide",
.id = 0, .id = 0,
.dev = { .dev = {
.dma_mask = &ide_dmamask, .dma_mask = &ide_dmamask,
.coherent_dma_mask = DMA_32BIT_MASK, .coherent_dma_mask = DMA_BIT_MASK(32),
}, },
.num_resources = ARRAY_SIZE(db1200_ide_res), .num_resources = ARRAY_SIZE(db1200_ide_res),
.resource = db1200_ide_res, .resource = db1200_ide_res,
@ -385,12 +385,12 @@ static struct au1550_spi_info db1200_spi_platdata = {
.activate_cs = db1200_spi_cs_en, .activate_cs = db1200_spi_cs_en,
}; };
static u64 spi_dmamask = DMA_32BIT_MASK; static u64 spi_dmamask = DMA_BIT_MASK(32);
static struct platform_device db1200_spi_dev = { static struct platform_device db1200_spi_dev = {
.dev = { .dev = {
.dma_mask = &spi_dmamask, .dma_mask = &spi_dmamask,
.coherent_dma_mask = DMA_32BIT_MASK, .coherent_dma_mask = DMA_BIT_MASK(32),
.platform_data = &db1200_spi_platdata, .platform_data = &db1200_spi_platdata,
}, },
.name = "au1550-spi", .name = "au1550-spi",