Module Name:    src
Committed By:   cegger
Date:           Thu May  7 08:03:24 UTC 2009

Modified Files:
        src/sys/dev: ldvar.h

Log Message:
struct device * -> device_t, no functional changes intended.


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/sys/dev/ldvar.h

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/ldvar.h
diff -u src/sys/dev/ldvar.h:1.15 src/sys/dev/ldvar.h:1.16
--- src/sys/dev/ldvar.h:1.15	Tue Sep  9 12:45:39 2008
+++ src/sys/dev/ldvar.h	Thu May  7 08:03:23 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: ldvar.h,v 1.15 2008/09/09 12:45:39 tron Exp $	*/
+/*	$NetBSD: ldvar.h,v 1.16 2009/05/07 08:03:23 cegger Exp $	*/
 
 /*-
  * Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -33,9 +33,10 @@
 #define	_DEV_LDVAR_H_
 
 #include <sys/mutex.h>
+#include <sys/device.h>	/* for device_t */
 
 struct ld_softc {
-	struct	device *sc_dv;
+	device_t sc_dv;
 	struct	disk sc_dk;
 	struct	bufq_state *sc_bufq;
 	kmutex_t sc_mutex;

Reply via email to