Module Name: src
Committed By: cegger
Date: Thu May 7 09:11:42 UTC 2009
Modified Files:
src/sys/dev: ld.c
Log Message:
struct device * -> device_t, no functional changes intended.
To generate a diff of this commit:
cvs rdiff -u -r1.64 -r1.65 src/sys/dev/ld.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/ld.c
diff -u src/sys/dev/ld.c:1.64 src/sys/dev/ld.c:1.65
--- src/sys/dev/ld.c:1.64 Tue Jan 13 13:35:52 2009
+++ src/sys/dev/ld.c Thu May 7 09:11:42 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: ld.c,v 1.64 2009/01/13 13:35:52 yamt Exp $ */
+/* $NetBSD: ld.c,v 1.65 2009/05/07 09:11:42 cegger Exp $ */
/*-
* Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
@@ -34,7 +34,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ld.c,v 1.64 2009/01/13 13:35:52 yamt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ld.c,v 1.65 2009/05/07 09:11:42 cegger Exp $");
#include "rnd.h"
@@ -70,7 +70,7 @@
static bool ld_shutdown(device_t, int);
static void ldstart(struct ld_softc *, struct buf *);
static void ld_set_properties(struct ld_softc *);
-static void ld_config_interrupts (struct device *);
+static void ld_config_interrupts (device_t);
extern struct cfdriver ld_cd;
@@ -915,7 +915,7 @@
}
static void
-ld_config_interrupts (struct device *d)
+ld_config_interrupts(device_t d)
{
struct ld_softc *sc = device_private(d);
dkwedge_discover(&sc->sc_dk);