diff options
author | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2006-12-08 01:19:45 +0000 |
---|---|---|
committer | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2006-12-08 01:19:45 +0000 |
commit | 5dbd1e450cc5f79e6e50b33fb4a958268f63a82c (patch) | |
tree | 237f33b176353086ff59a1572099fb894787edd4 /sys/arch/macppc | |
parent | 8964fd5d79b9324ab13b5b6539fc3e73a41f42de (diff) |
scsibus_attach_args not scsi_attach_args for saa in
mesh_attach().
ok dlg@
Diffstat (limited to 'sys/arch/macppc')
-rw-r--r-- | sys/arch/macppc/dev/mesh.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/macppc/dev/mesh.c b/sys/arch/macppc/dev/mesh.c index aa1556fa8d0..4e2f494a97d 100644 --- a/sys/arch/macppc/dev/mesh.c +++ b/sys/arch/macppc/dev/mesh.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mesh.c,v 1.13 2006/11/28 23:59:45 dlg Exp $ */ +/* $OpenBSD: mesh.c,v 1.14 2006/12/08 01:19:44 thib Exp $ */ /* $NetBSD: mesh.c,v 1.1 1999/02/19 13:06:03 tsubai Exp $ */ /*- @@ -219,7 +219,7 @@ mesh_attach(struct device *parent, struct device *self, void *aux) { struct mesh_softc *sc = (void *)self; struct confargs *ca = aux; - struct scsi_attach_args saa; + struct scsibus_attach_args saa; int i, error; u_int *reg; |