summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2014-03-05 23:47:00 +0000
committerderaadt <deraadt@openbsd.org>2014-03-05 23:47:00 +0000
commit3add14d59d4af58780a051aa4ce92efae79f71b7 (patch)
tree37ac7b5f01718d951e92db05a81edc6c2d0a3293
parentFix the return values of getpwnam_r(), getpwuid_r(), getgrnam_r(), (diff)
downloadwireguard-openbsd-3add14d59d4af58780a051aa4ce92efae79f71b7.tar.xz
wireguard-openbsd-3add14d59d4af58780a051aa4ce92efae79f71b7.zip
force cfattach decl to same form as others
-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 = {