On Mon, Aug 21, 2006 at 12:31:42PM -0700, David Miller wrote: > From: Adrian Bunk <bunk@xxxxxxxxx> > Date: Mon, 21 Aug 2006 21:22:15 +0200 > > > On Mon, Aug 21, 2006 at 11:53:44AM +0100, Christoph Hellwig wrote: > > > On Mon, Aug 21, 2006 at 12:43:57PM +0200, Adrian Bunk wrote: > > > > This patch contains the following cleanups: > > > > - #include <linux/irq.h> for getting the prototypes of > > > > {dis,en}able_irq() > > > > > > nothing outside of arch code must ever include <linux/irq.h> > > > > Why? > > It sounds rather strange that non-arch code should use asm headers. > > It's an unfortunate side effect of how the generic IRQ layer was done. > > The linux/irq.h head should only be used on platforms that make use of > the generic IRQ layer. > > asm/irq.h is what should be included by drivers and the like that want > the IRQ interfaces. > > I'm not saying this is a good situation, it's just the way it is. What a mess... Updated patch below. cu Adrian <-- snip --> This patch contains the following cleanups: - #include <asm/irq.h> for getting the prototypes of {dis,en}able_irq() - make the needlessly global wd33c93_setup() static Signed-off-by: Adrian Bunk <bunk@xxxxxxxxx> --- linux-2.6.18-rc5-mm1/drivers/scsi/wd33c93.c.old 2006-09-04 01:45:57.000000000 +0200 +++ linux-2.6.18-rc5-mm1/drivers/scsi/wd33c93.c 2006-09-04 01:46:26.000000000 +0200 @@ -85,6 +85,8 @@ #include <scsi/scsi_device.h> #include <scsi/scsi_host.h> +#include <asm/irq.h> + #include "wd33c93.h" @@ -1710,7 +1712,7 @@ static char setup_used[MAX_SETUP_ARGS]; static int done_setup = 0; -int +static int wd33c93_setup(char *str) { int i; -- VGER BF report: U 0.5 - To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html