summaryrefslogtreecommitdiff
path: root/sys/dev/ata
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2007-02-19 11:57:46 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2007-02-19 11:57:46 +0000
commit6390a846ab26ed40b3715f15d67da16353191ea2 (patch)
tree1a34de87c4cc78eb1b557811264c621431c9b815 /sys/dev/ata
parent54cbe2b43ba48d31607b50b708198380f960a8e1 (diff)
oops, i should have tried to compile the REQUEST_SENSE handling before
committing it.
Diffstat (limited to 'sys/dev/ata')
-rw-r--r--sys/dev/ata/atascsi.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/ata/atascsi.c b/sys/dev/ata/atascsi.c
index 7d055dc1631..11d3fad099a 100644
--- a/sys/dev/ata/atascsi.c
+++ b/sys/dev/ata/atascsi.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: atascsi.c,v 1.4 2007/02/19 11:55:04 dlg Exp $ */
+/* $OpenBSD: atascsi.c,v 1.5 2007/02/19 11:57:45 dlg Exp $ */
/*
* Copyright (c) 2007 David Gwynne <dlg@openbsd.org>
@@ -216,7 +216,8 @@ atascsi_disk_capacity(struct scsi_xfer *xs)
int
atascsi_disk_sense(struct scsi_xfer *xs)
{
- struct scsi_sense_data *sd = xs->data;
+ struct scsi_sense_data *sd = (struct scsi_sense_data *)xs->data;
+ int s;
bzero(xs->data, xs->datalen);
/* check datalen > sizeof(struct scsi_sense_data)? */