diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2021-03-05 12:40:15 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2021-03-05 12:40:15 +0000 |
commit | ec3b725868ec3096d98d97139ede7ae37bf0cc50 (patch) | |
tree | cd986c31ac9759372be3fabb02f7927cd2dc9344 /sys/dev/pci/iha_pci.c | |
parent | 404a31b0e021e6bd2a6eee790b2c7004e7e07d66 (diff) |
ansi
Diffstat (limited to 'sys/dev/pci/iha_pci.c')
-rw-r--r-- | sys/dev/pci/iha_pci.c | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/sys/dev/pci/iha_pci.c b/sys/dev/pci/iha_pci.c index d1f37bc3091..45acc63e876 100644 --- a/sys/dev/pci/iha_pci.c +++ b/sys/dev/pci/iha_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: iha_pci.c,v 1.18 2020/07/20 14:41:13 krw Exp $ */ +/* $OpenBSD: iha_pci.c,v 1.19 2021/03/05 12:40:13 jsg Exp $ */ /*------------------------------------------------------------------------- * * Device driver for the INI-9XXXU/UW or INIC-940/950 PCI SCSI Controller. @@ -60,10 +60,7 @@ struct scsi_adapter iha_switch = { }; int -iha_pci_probe(parent, match, aux) - struct device *parent; - void *match; - void *aux; +iha_pci_probe(struct device *parent, void *match, void *aux) { struct pci_attach_args *pa = aux; @@ -85,10 +82,7 @@ iha_pci_probe(parent, match, aux) } void -iha_pci_attach(parent, self, aux) - struct device *parent; - struct device *self; - void *aux; +iha_pci_attach(struct device *parent, struct device *self, void *aux) { struct pci_attach_args *pa = aux; struct scsibus_attach_args saa; |