diff options
Diffstat (limited to 'drivers/ide/ide_platform.c')
| -rw-r--r-- | drivers/ide/ide_platform.c | 22 | 
1 files changed, 12 insertions, 10 deletions
diff --git a/drivers/ide/ide_platform.c b/drivers/ide/ide_platform.c index 542603b394e..a8b4b6af80e 100644 --- a/drivers/ide/ide_platform.c +++ b/drivers/ide/ide_platform.c @@ -19,13 +19,12 @@  #include <linux/module.h>  #include <linux/ata_platform.h>  #include <linux/platform_device.h> +#include <linux/interrupt.h>  #include <linux/io.h> -static void __devinit plat_ide_setup_ports(struct ide_hw *hw, -					   void __iomem *base, -					   void __iomem *ctrl, -					   struct pata_platform_info *pdata, -					   int irq) +static void plat_ide_setup_ports(struct ide_hw *hw, void __iomem *base, +				 void __iomem *ctrl, +				 struct pata_platform_info *pdata, int irq)  {  	unsigned long port = (unsigned long)base;  	int i; @@ -47,7 +46,7 @@ static const struct ide_port_info platform_ide_port_info = {  	.chipset		= ide_generic,  }; -static int __devinit plat_ide_probe(struct platform_device *pdev) +static int plat_ide_probe(struct platform_device *pdev)  {  	struct resource *res_base, *res_alt, *res_irq;  	void __iomem *base, *alt_base; @@ -57,7 +56,7 @@ static int __devinit plat_ide_probe(struct platform_device *pdev)  	struct ide_hw hw, *hws[] = { &hw };  	struct ide_port_info d = platform_ide_port_info; -	pdata = pdev->dev.platform_data; +	pdata = dev_get_platdata(&pdev->dev);  	/* get a pointer to the register memory */  	res_base = platform_get_resource(pdev, IORESOURCE_IO, 0); @@ -95,7 +94,10 @@ static int __devinit plat_ide_probe(struct platform_device *pdev)  	plat_ide_setup_ports(&hw, base, alt_base, pdata, res_irq->start);  	hw.dev = &pdev->dev; -	d.irq_flags = res_irq->flags; +	d.irq_flags = res_irq->flags & IRQF_TRIGGER_MASK; +	if (res_irq->flags & IORESOURCE_IRQ_SHAREABLE) +		d.irq_flags |= IRQF_SHARED; +  	if (mmio)  		d.host_flags |= IDE_HFLAG_MMIO; @@ -111,7 +113,7 @@ out:  	return ret;  } -static int __devexit plat_ide_remove(struct platform_device *pdev) +static int plat_ide_remove(struct platform_device *pdev)  {  	struct ide_host *host = dev_get_drvdata(&pdev->dev); @@ -126,7 +128,7 @@ static struct platform_driver platform_ide_driver = {  		.owner = THIS_MODULE,  	},  	.probe = plat_ide_probe, -	.remove = __devexit_p(plat_ide_remove), +	.remove = plat_ide_remove,  };  static int __init platform_ide_init(void)  | 
