Module Name: src
Committed By: cegger
Date: Thu May 7 09:13:13 UTC 2009
Modified Files:
src/sys/dev: vnd.c
Log Message:
struct cfdata * -> cfdata_t, no functional changes intended.
To generate a diff of this commit:
cvs rdiff -u -r1.200 -r1.201 src/sys/dev/vnd.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/vnd.c
diff -u src/sys/dev/vnd.c:1.200 src/sys/dev/vnd.c:1.201
--- src/sys/dev/vnd.c:1.200 Wed May 6 22:38:42 2009
+++ src/sys/dev/vnd.c Thu May 7 09:13:13 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: vnd.c,v 1.200 2009/05/06 22:38:42 ad Exp $ */
+/* $NetBSD: vnd.c,v 1.201 2009/05/07 09:13:13 cegger Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998, 2008 The NetBSD Foundation, Inc.
@@ -130,7 +130,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vnd.c,v 1.200 2009/05/06 22:38:42 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vnd.c,v 1.201 2009/05/07 09:13:13 cegger Exp $");
#if defined(_KERNEL_OPT)
#include "fs_nfs.h"
@@ -309,7 +309,7 @@
static struct vnd_softc *
vnd_spawn(int unit)
{
- struct cfdata *cf;
+ cfdata_t cf;
cf = malloc(sizeof(*cf), M_DEVBUF, M_WAITOK);
cf->cf_name = vnd_cd.cd_name;