diff options
| author | Luoqi Chen <luoqi@FreeBSD.org> | 1999-08-30 18:37:43 +0000 |
|---|---|---|
| committer | Luoqi Chen <luoqi@FreeBSD.org> | 1999-08-30 18:37:43 +0000 |
| commit | bf56aebced147a70757b05af1bc6d7afe26a5cb1 (patch) | |
| tree | 31ba3946b7f0d0d21a7a021d75fd1e1f32bdb511 | |
| parent | f5d001ffc9fc714c1719e80741ae4123a7a81d1a (diff) | |
Notes
| -rw-r--r-- | sys/i386/isa/atapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/i386/isa/atapi.c b/sys/i386/isa/atapi.c index 3796b9c02b11..e40a9d5ccc44 100644 --- a/sys/i386/isa/atapi.c +++ b/sys/i386/isa/atapi.c @@ -540,7 +540,7 @@ static struct atapicmd *atapi_alloc (struct atapi *ata) static void atapi_free (struct atapi *ata, struct atapicmd *ac) { if (! ata->free) - wakeup ((caddr_t)&ata); + wakeup ((caddr_t)ata); ac->busy = 0; ac->next = ata->free; ata->free = ac; |
