diff options
| author | 2002-12-14 01:15:21 +0000 | |
|---|---|---|
| committer | 2002-12-14 01:15:21 +0000 | |
| commit | 8a274baf45f97c83074a9c3d2c4450952d26c7f5 (patch) | |
| tree | fb3b69e20c3c791c023e4c3e8c8a8805a3910ba5 | |
| parent | Less stupid check for 7-bit ascii in toupper/tolower (diff) | |
| download | wireguard-openbsd-8a274baf45f97c83074a9c3d2c4450952d26c7f5.tar.xz wireguard-openbsd-8a274baf45f97c83074a9c3d2c4450952d26c7f5.zip | |
Using quirks that make more sense.
(iPod is happy with this)
| -rw-r--r-- | sys/dev/ieee1394/fwscsi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ieee1394/fwscsi.c b/sys/dev/ieee1394/fwscsi.c index f939c8eca15..d869608365c 100644 --- a/sys/dev/ieee1394/fwscsi.c +++ b/sys/dev/ieee1394/fwscsi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fwscsi.c,v 1.5 2002/12/13 22:54:29 tdeval Exp $ */ +/* $OpenBSD: fwscsi.c,v 1.6 2002/12/14 01:15:21 tdeval Exp $ */ /* * Copyright (c) 2002 Thierry Deval. All rights reserved. @@ -321,7 +321,7 @@ fwscsi_attach(struct device *parent, struct device *self, void *aux) sc->sc_link.device_softc = sc; sc->sc_link.adapter = &fwscsi_switch; sc->sc_link.adapter_softc = sc; - sc->sc_link.flags |= SDEV_ATAPI; + sc->sc_link.quirks |= SDEV_NOLUNS | SDEV_NOTAGS | SDEV_NOCDB6; #endif /* ! __NetBSD__ */ sc->sc_fwnode = (struct fwnode_softc *)parent; |
