diff options
author | Marco Peereboom <marco@cvs.openbsd.org> | 2005-05-09 19:50:49 +0000 |
---|---|---|
committer | Marco Peereboom <marco@cvs.openbsd.org> | 2005-05-09 19:50:49 +0000 |
commit | 68234d4d57208b9b66fa65641c1d7d23be89181e (patch) | |
tree | 77687a8adaa3c12fb093bbbcc81f62c8d25208a2 /sys/dev/pci | |
parent | 228a7560b4ebceb1584b1d68fe4bc8137ce8352f (diff) |
replace sc_quirk with sc_flags, spotted and ok mickey@
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/ami_pci.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/ami_pci.c b/sys/dev/pci/ami_pci.c index 5af20e46611..da4dff9fe23 100644 --- a/sys/dev/pci/ami_pci.c +++ b/sys/dev/pci/ami_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ami_pci.c,v 1.23 2005/04/16 17:21:12 marco Exp $ */ +/* $OpenBSD: ami_pci.c,v 1.24 2005/05/09 19:50:48 marco Exp $ */ /* * Copyright (c) 2001 Michael Shalayeff @@ -276,9 +276,9 @@ ami_pci_attach(parent, self, aux) if ((i = ami_pci_find_device(aux)) != -1) { if (ami_pci_devices[i].flags & AMI_BROKEN) - sc->sc_quirks = AMI_BROKEN; + sc->sc_flags = AMI_BROKEN; else - sc->sc_quirks = 0x0000; + sc->sc_flags = 0x0000; } else { /* this device existed at _match() should never happen */ |