summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2009-10-05 20:37:46 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2009-10-05 20:37:46 +0000
commit4592cc032e69370ea1a10fbc86d08ddc1dde17b5 (patch)
tree386ee9f7a6c54d7a64074e1b4e2c629ae7765b8f
parentdd45a3275d4b23dbeb5221af6552cfd89867cb30 (diff)
wrap an annoying long line (like amd64)
-rw-r--r--sys/arch/i386/pci/pciide_machdep.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/i386/pci/pciide_machdep.c b/sys/arch/i386/pci/pciide_machdep.c
index 180267ad684..ce4ab653c35 100644
--- a/sys/arch/i386/pci/pciide_machdep.c
+++ b/sys/arch/i386/pci/pciide_machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pciide_machdep.c,v 1.7 2009/01/04 10:37:40 jsg Exp $ */
+/* $OpenBSD: pciide_machdep.c,v 1.8 2009/10/05 20:37:45 deraadt Exp $ */
/* $NetBSD: pciide_machdep.c,v 1.2 1999/02/19 18:01:27 mycroft Exp $ */
/*-
@@ -90,7 +90,8 @@ pciide_machdep_compat_intr_establish(struct device *dev,
void *cookie;
irq = PCIIDE_COMPAT_IRQ(chan);
- cookie = isa_intr_establish(NULL, irq, IST_EDGE, IPL_BIO, func, arg, dev->dv_xname);
+ cookie = isa_intr_establish(NULL, irq, IST_EDGE, IPL_BIO, func, arg,
+ dev->dv_xname);
return (cookie);
}