From 68234d4d57208b9b66fa65641c1d7d23be89181e Mon Sep 17 00:00:00 2001 From: Marco Peereboom Date: Mon, 9 May 2005 19:50:49 +0000 Subject: replace sc_quirk with sc_flags, spotted and ok mickey@ --- sys/dev/pci/ami_pci.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/dev/pci') 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 */ -- cgit v1.2.3