Module Name:    src
Committed By:   dyoung
Date:           Fri Jan  8 20:38:43 UTC 2010

Modified Files:
        src/sys/dev/usb: ehci.c

Log Message:
Expand PMF_FN_* macros.


To generate a diff of this commit:
cvs rdiff -u -r1.164 -r1.165 src/sys/dev/usb/ehci.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/usb/ehci.c
diff -u src/sys/dev/usb/ehci.c:1.164 src/sys/dev/usb/ehci.c:1.165
--- src/sys/dev/usb/ehci.c:1.164	Sat Nov 14 17:06:12 2009
+++ src/sys/dev/usb/ehci.c	Fri Jan  8 20:38:43 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: ehci.c,v 1.164 2009/11/14 17:06:12 uebayasi Exp $ */
+/*	$NetBSD: ehci.c,v 1.165 2010/01/08 20:38:43 dyoung Exp $ */
 
 /*
  * Copyright (c) 2004-2008 The NetBSD Foundation, Inc.
@@ -52,7 +52,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.164 2009/11/14 17:06:12 uebayasi Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ehci.c,v 1.165 2010/01/08 20:38:43 dyoung Exp $");
 
 #include "ohci.h"
 #include "uhci.h"
@@ -1123,7 +1123,7 @@
  * bus glue needs to call out to it.
  */
 bool
-ehci_suspend(device_t dv PMF_FN_ARGS)
+ehci_suspend(device_t dv, pmf_qual_t qual)
 {
 	ehci_softc_t *sc = device_private(dv);
 	int i, s;
@@ -1174,7 +1174,7 @@
 }
 
 bool
-ehci_resume(device_t dv PMF_FN_ARGS)
+ehci_resume(device_t dv, pmf_qual_t qual)
 {
 	ehci_softc_t *sc = device_private(dv);
 	int i;

Reply via email to