Commit d761585a authored by Felipe Balbi's avatar Felipe Balbi Committed by Tony Lindgren

omap1: mailbox: kill compile warning

use ioremap and remove unused variable to get rid
of compile warnings.
Signed-off-by: default avatarFelipe Balbi <felipe.balbi@nokia.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 96fbd745
...@@ -73,7 +73,7 @@ static inline void omap_init_rtc(void) {} ...@@ -73,7 +73,7 @@ static inline void omap_init_rtc(void) {}
# define INT_DSP_MAILBOX1 INT_1610_DSP_MAILBOX1 # define INT_DSP_MAILBOX1 INT_1610_DSP_MAILBOX1
#endif #endif
#define OMAP1_MBOX_BASE OMAP1_IO_ADDRESS(OMAP16XX_MAILBOX_BASE) #define OMAP1_MBOX_BASE OMAP16XX_MAILBOX_BASE
static struct resource mbox_resources[] = { static struct resource mbox_resources[] = {
{ {
......
...@@ -146,7 +146,6 @@ EXPORT_SYMBOL(mbox_dsp_info); ...@@ -146,7 +146,6 @@ EXPORT_SYMBOL(mbox_dsp_info);
static int __devinit omap1_mbox_probe(struct platform_device *pdev) static int __devinit omap1_mbox_probe(struct platform_device *pdev)
{ {
struct resource *res; struct resource *res;
int ret = 0;
if (pdev->num_resources != 2) { if (pdev->num_resources != 2) {
dev_err(&pdev->dev, "invalid number of resources: %d\n", dev_err(&pdev->dev, "invalid number of resources: %d\n",
...@@ -160,12 +159,18 @@ static int __devinit omap1_mbox_probe(struct platform_device *pdev) ...@@ -160,12 +159,18 @@ static int __devinit omap1_mbox_probe(struct platform_device *pdev)
dev_err(&pdev->dev, "invalid mem resource\n"); dev_err(&pdev->dev, "invalid mem resource\n");
return -ENODEV; return -ENODEV;
} }
mbox_base = res->start;
mbox_base = ioremap(res->start, resource_size(res));
if (!mbox_base) {
dev_err(&pdev->dev, "ioremap failed\n");
return -ENODEV;
}
/* DSP IRQ */ /* DSP IRQ */
res = platform_get_resource(pdev, IORESOURCE_IRQ, 0); res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
if (unlikely(!res)) { if (unlikely(!res)) {
dev_err(&pdev->dev, "invalid irq resource\n"); dev_err(&pdev->dev, "invalid irq resource\n");
iounmap(mbox_base);
return -ENODEV; return -ENODEV;
} }
mbox_dsp_info.irq = res->start; mbox_dsp_info.irq = res->start;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment