Re: mm snapshot broken-out-2007-01-26-00-36.tar.gz uploaded

From: Michal Piotrowski
Date: Sat Jan 27 2007 - 11:03:53 EST


akpm@xxxxxxxx napisaÅ(a):
> The mm snapshot broken-out-2007-01-26-00-36.tar.gz has been uploaded to
>
> ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/mm/broken-out-2007-01-26-00-36.tar.gz
>

drivers/ata/sata_inic162x.c: In function âinic_pci_device_resumeâ:
drivers/ata/sata_inic162x.c:652: warning: ignoring return value of âata_pci_device_do_resumeâ, declared with attribute warn_unused_result
drivers/ata/sata_inic162x.c: In function âinic_init_oneâ:
drivers/ata/sata_inic162x.c:727: error: âSA_SHIRQâ undeclared (first use in this function)
drivers/ata/sata_inic162x.c:727: error: (Each undeclared identifier is reported only once
drivers/ata/sata_inic162x.c:727: error: for each function it appears in.)
make[2]: *** [drivers/ata/sata_inic162x.o] BÅÄd 1
make[1]: *** [drivers/ata] BÅÄd 2
make: *** [drivers] BÅÄd 2

SA_SHIRQ was removed. IRQF_SHARED should be used instead?

Regards,
Michal

--
Michal K. K. Piotrowski
LTG - Linux Testers Group
(http://www.stardust.webpages.pl/ltg/)

Signed-off-by: Michal Piotrowski <michal.k.k.piotrowski@xxxxxxxxx>

--- linux-work-clean/drivers/ata/sata_inic162x.c 2007-01-26 16:47:31.000000000 +0100
+++ linux-work/drivers/ata/sata_inic162x.c 2007-01-27 16:53:26.000000000 +0100
@@ -724,7 +724,7 @@ static int inic_init_one(struct pci_dev
probe_ent->n_ports = NR_PORTS;

probe_ent->irq = pdev->irq;
- probe_ent->irq_flags = SA_SHIRQ;
+ probe_ent->irq_flags = IRQF_SHARED;

probe_ent->mmio_base = mmio_base;

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/