diff options
| author | jruoho <jruoho@NetBSD.org> | 2010-03-04 23:06:36 +0000 |
|---|---|---|
| committer | jruoho <jruoho@NetBSD.org> | 2010-03-04 23:06:36 +0000 |
| commit | a087b17c08c95d64a6d16b069743ef10ea723baf (patch) | |
| tree | b0e020d063edbb9d03215dff3b73fca2429c98d7 /sys/dev | |
| parent | 797e51d63e5f67dede6a3d6733e5a2f49e1f8c0f (diff) | |
Add missing semicolon.
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/acpi/acpi_button.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/acpi/acpi_button.c b/sys/dev/acpi/acpi_button.c index d00dc7204ed..f0782a1f0de 100644 --- a/sys/dev/acpi/acpi_button.c +++ b/sys/dev/acpi/acpi_button.c @@ -1,4 +1,4 @@ -/* $NetBSD: acpi_button.c,v 1.32 2010/03/04 22:29:47 jruoho Exp $ */ +/* $NetBSD: acpi_button.c,v 1.33 2010/03/04 23:06:36 jruoho Exp $ */ /* * Copyright 2001, 2003 Wasabi Systems, Inc. @@ -40,7 +40,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: acpi_button.c,v 1.32 2010/03/04 22:29:47 jruoho Exp $"); +__KERNEL_RCSID(0, "$NetBSD: acpi_button.c,v 1.33 2010/03/04 23:06:36 jruoho Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -130,7 +130,7 @@ acpibut_attach(device_t parent, device_t self, void *aux) sc->sc_node = aa->aa_node; - (void)pmf_device_register(self, NULL, NULL) + (void)pmf_device_register(self, NULL, NULL); (void)sysmon_pswitch_register(&sc->sc_smpsw); rv = AcpiInstallNotifyHandler(sc->sc_node->ad_handle, |
