2006-10-18 17:13:25

by Nicolas Pitre

[permalink] [raw]
Subject: [PATCH] another fallout from the pt_regs removal


Signed-off-by: Nicolas Pitre <[email protected]>

---

diff --git a/arch/arm/mach-pxa/lubbock.c b/arch/arm/mach-pxa/lubbock.c
index ee80d62..142c33c 100644
--- a/arch/arm/mach-pxa/lubbock.c
+++ b/arch/arm/mach-pxa/lubbock.c
@@ -397,7 +397,7 @@ static void lubbock_mmc_poll(unsigned lo
if (LUB_IRQ_SET_CLR & (1 << 0))
mod_timer(&mmc_timer, jiffies + MMC_POLL_RATE);
else {
- (void) mmc_detect_int(LUBBOCK_SD_IRQ, (void *)data, NULL);
+ (void) mmc_detect_int(LUBBOCK_SD_IRQ, (void *)data);
enable_irq(LUBBOCK_SD_IRQ);
}
}


2006-10-18 17:36:28

by Nicolas Pitre

[permalink] [raw]
Subject: Re: [PATCH] another fallout from the pt_regs removal


OK please drop that one -- it has been fixed already.


On Wed, 18 Oct 2006, Nicolas Pitre wrote:

>
> Signed-off-by: Nicolas Pitre <[email protected]>
>
> ---
>
> diff --git a/arch/arm/mach-pxa/lubbock.c b/arch/arm/mach-pxa/lubbock.c
> index ee80d62..142c33c 100644
> --- a/arch/arm/mach-pxa/lubbock.c
> +++ b/arch/arm/mach-pxa/lubbock.c
> @@ -397,7 +397,7 @@ static void lubbock_mmc_poll(unsigned lo
> if (LUB_IRQ_SET_CLR & (1 << 0))
> mod_timer(&mmc_timer, jiffies + MMC_POLL_RATE);
> else {
> - (void) mmc_detect_int(LUBBOCK_SD_IRQ, (void *)data, NULL);
> + (void) mmc_detect_int(LUBBOCK_SD_IRQ, (void *)data);
> enable_irq(LUBBOCK_SD_IRQ);
> }
> }
>


Nicolas