Module Name:    src
Committed By:   martin
Date:           Fri Dec 11 07:01:27 UTC 2020

Modified Files:
        src/sys/dev/acpi: atppc_acpi.c

Log Message:
Fix editor mishap in r1.18


To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/sys/dev/acpi/atppc_acpi.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/acpi/atppc_acpi.c
diff -u src/sys/dev/acpi/atppc_acpi.c:1.19 src/sys/dev/acpi/atppc_acpi.c:1.20
--- src/sys/dev/acpi/atppc_acpi.c:1.19	Mon Dec  7 10:02:51 2020
+++ src/sys/dev/acpi/atppc_acpi.c	Fri Dec 11 07:01:27 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: atppc_acpi.c,v 1.19 2020/12/07 10:02:51 jmcneill Exp $ */
+/* $NetBSD: atppc_acpi.c,v 1.20 2020/12/11 07:01:27 martin Exp $ */
 
 /*-
  * Copyright (c) 2004 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: atppc_acpi.c,v 1.19 2020/12/07 10:02:51 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: atppc_acpi.c,v 1.20 2020/12/11 07:01:27 martin Exp $");
 
 #include "opt_atppc.h"
 
@@ -142,7 +142,7 @@ atppc_acpi_attach(device_t parent, devic
 
 	sc->sc_ieh = acpi_intr_establish(self,
 	    (uint64_t)(uintptr_t)aa->aa_node->ad_handle,
-	    IPL_TTY, false, atppcintr, self device_xname(self));
+	    IPL_TTY, false, atppcintr, self, device_xname(self));
 	if (sc->sc_ieh == NULL) {
 		aprint_error_dev(self, "unable to establish interrupt\n");
 		goto out;

Reply via email to