Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/acpi Add missing semicolon.



details:   https://anonhg.NetBSD.org/src/rev/27ccd5277ef7
branches:  trunk
changeset: 752723:27ccd5277ef7
user:      jruoho <jruoho%NetBSD.org@localhost>
date:      Thu Mar 04 23:06:36 2010 +0000

description:
Add missing semicolon.

diffstat:

 sys/dev/acpi/acpi_button.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r e4cdb9fb804c -r 27ccd5277ef7 sys/dev/acpi/acpi_button.c
--- a/sys/dev/acpi/acpi_button.c        Thu Mar 04 22:57:37 2010 +0000
+++ b/sys/dev/acpi/acpi_button.c        Thu Mar 04 23:06:36 2010 +0000
@@ -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 @@
 
        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,



Home | Main Index | Thread Index | Old Index