Steve sent another patch to replace this patch.
Stanley.
On Wed, 2009-01-14 at 17:07 +0000, Russell King - ARM Linux wrote:
On Wed, Jan 14, 2009 at 02:58:00PM +0800, Stanley.Miao wrote:
quoted
When calling request IRQ it is desirable to allow platforms
to specific flags for the call to request_irq. Adding irq_flags
to smsc911x_platform_config allows these flags to be passed.
Yay, it's finally come through.
quoted
@@ -1968,8 +1969,9 @@ static int __devinit smsc911x_drv_probe(struct platform_device *pdev)
smsc911x_reg_write(pdata, INT_EN, 0);
smsc911x_reg_write(pdata, INT_STS, 0xFFFFFFFF);
- retval = request_irq(dev->irq, smsc911x_irqhandler, IRQF_DISABLED,
- dev->name, dev);
+ irq_flags = IRQF_DISABLED | pdata->config.irq_flags;
+ retval = request_irq(dev->irq, smsc911x_irqhandler, irq_flags,
+ dev->name, dev);
Same comments as for the other driver.