[PATCH] staging: rtl8187se: Remove pt_regs * irq handler parameter

2013-08-23 Thread navin patidar
struct pt_regs pointer is no longer passed as a irq handler argument. Signed-off-by: navin patidar --- drivers/staging/rtl8187se/r8180_core.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/rtl8187se/r8180_core.c b/drivers/staging/rtl8187se/r8180_core.

Re: [PATCH] staging: rtl8187se: Remove pt_regs * irq handler parameter

2013-08-23 Thread Dan Carpenter
On Fri, Aug 23, 2013 at 05:00:06PM +0530, navin patidar wrote: > struct pt_regs pointer is no longer passed as a irq handler > argument. > Good eye. Could you also remove the cast to (void *) so the compiler can catch this in the future? - if (request_irq(dev->irq, (void *)rtl8180_interru

Re: [PATCH] staging: rtl8187se: Remove pt_regs * irq handler parameter

2013-08-23 Thread navin patidar
On August 23, 2013 at 5:18 PM Dan Carpenter wrote: > On Fri, Aug 23, 2013 at 05:00:06PM +0530, navin patidar wrote: > > struct pt_regs pointer is no longer passed as a irq handler > > argument. > > > > Good eye. > > Could you also remove the cast to (void *) so the compiler can catch > this in the