[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20070510122129.GC17402@slug>
Date: Thu, 10 May 2007 14:21:29 +0200
From: Frederik Deweerdt <deweerdt@...e.fr>
To: Andrew Morton <akpm@...ux-foundation.org>
Cc: linux-kernel@...r.kernel.org, a.zummo@...ertech.it, dtor@...l.ru
Subject: ixp4xx compile error (was Re: 2.6.21-mm2)
On Wed, May 09, 2007 at 01:23:22AM -0700, Andrew Morton wrote:
>
> ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.21/2.6.21-mm2/
>
Hi all,
I've got this compile error while building arm ipx4xx:
CC [M] drivers/input/misc/ixp4xx-beeper.o
drivers/input/misc/ixp4xx-beeper.c: In function 'ixp4xx_spkr_event':
drivers/input/misc/ixp4xx-beeper.c:54: error: 'input_dev' undeclared (first use in this function)
drivers/input/misc/ixp4xx-beeper.c:54: error: (Each undeclared identifier is reported only once
drivers/input/misc/ixp4xx-beeper.c:54: error: for each function it appears in.)
make[3]: *** [drivers/input/misc/ixp4xx-beeper.o] Error 1
make[2]: *** [drivers/input/misc] Error 2
make[1]: *** [drivers/input] Error 2
make: *** [drivers] Error 2
Following patch fixes the problem.
Regards,
Frederik
Signed-off-by: Frederik Deweerdt <frederik.deweerdt@...il.com>
--- a/drivers/input/misc/ixp4xx-beeper.c 2007-05-10 08:00:53.000000000 +0200
+++ b/drivers/input/misc/ixp4xx-beeper.c.ori 2007-05-10 07:59:56.000000000 +0200
@@ -51,7 +51,7 @@
static int ixp4xx_spkr_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
{
- unsigned int pin = (unsigned int) input_get_drvdata(dev);
+ unsigned int pin = (unsigned int) input_get_drvdata(input_dev);
unsigned int count = 0;
if (type != EV_SND)
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists