Date: Tue, 19 Mar 2002 12:33:17 +0200 From: Ruslan Ermilov <ru@FreeBSD.org> To: =?koi8-r?Q?S=F8ren?= Schmidt <sos@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-card.c ata-disk.c ata-disk.h ata-dma.c ata-isa.c ata-pci.c ata-raid.c ata-raid.h atapi-all.c atapi-all.h atapi-cd.c atapi-cd.h atapi-fd.c atapi-fd.h atapi-tape.c atapi-tape.h Message-ID: <20020319103317.GB65580@sunbay.com> In-Reply-To: <200203180837.g2I8biY94563@freefall.freebsd.org> References: <200203180837.g2I8biY94563@freefall.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
On Mon, Mar 18, 2002 at 12:37:44AM -0800, Søren Schmidt wrote:
> sos 2002/03/18 00:37:44 PST
>
> Modified files: (Branch: RELENG_4)
> sys/dev/ata ata-all.c ata-all.h ata-disk.c ata-disk.h
> ata-dma.c ata-raid.c ata-raid.h
> atapi-all.c atapi-all.h atapi-cd.c
> atapi-cd.h atapi-fd.c atapi-fd.h
> atapi-tape.c atapi-tape.h
> Added files: (Branch: RELENG_4)
> sys/dev/ata ata-card.c ata-isa.c ata-pci.c
> Log:
> MFC: the entire ATA driver with all functionality as of 2002-03-18.
>
The following patch is required to compile GENERIC Alpha kernel:
%%%
Index: ata-pci.c
===================================================================
RCS file: /home/ncvs/src/sys/dev/ata/ata-pci.c,v
retrieving revision 1.32.2.1
diff -u -p -r1.32.2.1 ata-pci.c
--- ata-pci.c 18 Mar 2002 08:37:33 -0000 1.32.2.1
+++ ata-pci.c 19 Mar 2002 10:25:21 -0000
@@ -723,7 +723,7 @@ ata_pci_setup_intr(device_t dev, device_
{
if (ATA_MASTERDEV(dev)) {
#ifdef __alpha__
- return alpha_platform_setup_ide_intr(child, irq, intr, arg, cookiep);
+ return alpha_platform_setup_ide_intr(irq, intr, arg, cookiep);
#else
return BUS_SETUP_INTR(device_get_parent(dev), child, irq,
flags, intr, arg, cookiep);
@@ -740,7 +740,7 @@ ata_pci_teardown_intr(device_t dev, devi
{
if (ATA_MASTERDEV(dev)) {
#ifdef __alpha__
- return alpha_platform_teardown_ide_intr(child, irq, cookie);
+ return alpha_platform_teardown_ide_intr(irq, cookie);
#else
return BUS_TEARDOWN_INTR(device_get_parent(dev), child, irq, cookie);
#endif
%%%
Cheers,
--
Ruslan Ermilov Sysadmin and DBA,
ru@sunbay.com Sunbay Software AG,
ru@FreeBSD.org FreeBSD committer,
+380.652.512.251 Simferopol, Ukraine
http://www.FreeBSD.org The Power To Serve
http://www.oracle.com Enabling The Information Age
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020319103317.GB65580>
