9
0
Fork 0

atmel/drivers: switch to dev_request_mem_region

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Jean-Christophe PLAGNIOL-VILLARD 2011-07-19 19:17:23 +02:00 committed by Sascha Hauer
parent eb18395e07
commit 358ab3eb84
4 changed files with 4 additions and 4 deletions

View File

@ -456,7 +456,7 @@ static int mci_probe(struct device_d *hw_dev)
if (pd->bus_width == 8)
host->mci.host_caps |= MMC_MODE_8BIT;
host->base = (void __iomem *)hw_dev->resource[0].start;
host->base = dev_request_mem_region(hw_dev, 0);
host->hw_dev = hw_dev;
hw_dev->priv = host;
host->clk = clk_get(hw_dev, "mci_clk");

View File

@ -381,7 +381,7 @@ static int __init atmel_nand_probe(struct device_d *dev)
if (!host)
return -ENOMEM;
host->io_base = (void __iomem *)dev->resource[0].start;
host->io_base = dev_request_mem_region(dev, 0);
mtd = &host->mtd;
nand_chip = &host->nand_chip;

View File

@ -446,7 +446,7 @@ static int macb_probe(struct device_d *dev)
macb->rx_ring = xmalloc(CFG_MACB_RX_RING_SIZE * sizeof(struct macb_dma_desc));
macb->tx_ring = xmalloc(sizeof(struct macb_dma_desc));
macb->regs = (void __iomem *)dev->resource[0].start;
macb->regs = dev_request_mem_region(dev, 0);
/*
* Do some basic initialization so that we at least can talk

View File

@ -375,7 +375,7 @@ static int atmel_serial_init_port(struct console_device *cdev)
struct device_d *dev = cdev->dev;
struct atmel_uart_port *uart = to_atmel_uart_port(cdev);
uart->base = (void __iomem *)dev->resource[0].start;
uart->base = dev_request_mem_region(dev, 0);
uart->clk = clk_get(dev, "usart");
clk_enable(uart->clk);
uart->uartclk = clk_get_rate(uart->clk);