Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 20 May 2009 16:47:40 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r192442 - head/sys/i386/acpica
Message-ID:  <200905201647.n4KGleSw037148@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: imp
Date: Wed May 20 16:47:40 2009
New Revision: 192442
URL: http://svn.freebsd.org/changeset/base/192442

Log:
  We don't need d_thread_t for cross-branch portability here anymore.
  Move do struct thread * instead.

Modified:
  head/sys/i386/acpica/acpi_machdep.c

Modified: head/sys/i386/acpica/acpi_machdep.c
==============================================================================
--- head/sys/i386/acpica/acpi_machdep.c	Wed May 20 16:29:22 2009	(r192441)
+++ head/sys/i386/acpica/acpi_machdep.c	Wed May 20 16:47:40 2009	(r192442)
@@ -277,7 +277,7 @@ apm_create_clone(struct cdev *dev, struc
 }
 
 static int
-apmopen(struct cdev *dev, int flag, int fmt, d_thread_t *td)
+apmopen(struct cdev *dev, int flag, int fmt, struct thread *td)
 {
 	struct	acpi_softc *acpi_sc;
 	struct 	apm_clone_data *clone;
@@ -294,7 +294,7 @@ apmopen(struct cdev *dev, int flag, int 
 }
 
 static int
-apmclose(struct cdev *dev, int flag, int fmt, d_thread_t *td)
+apmclose(struct cdev *dev, int flag, int fmt, struct thread *td)
 {
 	struct	apm_clone_data *clone;
 	struct	acpi_softc *acpi_sc;
@@ -318,7 +318,7 @@ apmclose(struct cdev *dev, int flag, int
 }
 
 static int
-apmioctl(struct cdev *dev, u_long cmd, caddr_t addr, int flag, d_thread_t *td)
+apmioctl(struct cdev *dev, u_long cmd, caddr_t addr, int flag, struct thread *td)
 {
 	int	error;
 	struct	apm_clone_data *clone;
@@ -436,7 +436,7 @@ apmwrite(struct cdev *dev, struct uio *u
 }
 
 static int
-apmpoll(struct cdev *dev, int events, d_thread_t *td)
+apmpoll(struct cdev *dev, int events, struct thread *td)
 {
 	struct	apm_clone_data *clone;
 	int revents;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200905201647.n4KGleSw037148>