summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2014-03-05 23:47:01 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2014-03-05 23:47:01 +0000
commit94cae2f77f0c0a7a26a62998083994e4f6161504 (patch)
treecd94c05ebb02305c937866fabc71e1207ae8f05d /sys/dev
parent5051930d85fb3692af2bfaf5e6f4f328472422b7 (diff)
force cfattach decl to same form as others
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/acpi/acpihpet.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/sys/dev/acpi/acpihpet.c b/sys/dev/acpi/acpihpet.c
index 77acdd1809c..ffa0cd26979 100644
--- a/sys/dev/acpi/acpihpet.c
+++ b/sys/dev/acpi/acpihpet.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: acpihpet.c,v 1.16 2013/12/21 16:41:01 deraadt Exp $ */
+/* $OpenBSD: acpihpet.c,v 1.17 2014/03/05 23:47:00 deraadt Exp $ */
/*
* Copyright (c) 2005 Thorsten Lockert <tholo@sigmasoft.com>
*
@@ -73,11 +73,8 @@ struct acpihpet_softc {
};
struct cfattach acpihpet_ca = {
- sizeof(struct acpihpet_softc),
- acpihpet_match,
- acpihpet_attach,
- NULL,
- acpihpet_activate
+ sizeof(struct acpihpet_softc), acpihpet_match, acpihpet_attach,
+ NULL, acpihpet_activate
};
struct cfdriver acpihpet_cd = {