Module Name: src
Committed By: bouyer
Date: Fri Dec 10 22:16:16 UTC 2010
Modified Files:
src/sys/dev/sbus [netbsd-4]: spif.c
Log Message:
Pull up following revision(s) (requested by hauke in ticket #1412):
sys/dev/sbus/spif.c: revision 1.19
Fix warning about missing initializer that showed up in sparc64
builds, but, strangely enough, not in sparc builds.
Relevant for netbsd-{4,5} release branches.
To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.9.2.1 src/sys/dev/sbus/spif.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/sbus/spif.c
diff -u src/sys/dev/sbus/spif.c:1.9 src/sys/dev/sbus/spif.c:1.9.2.1
--- src/sys/dev/sbus/spif.c:1.9 Sun Oct 1 20:31:51 2006
+++ src/sys/dev/sbus/spif.c Fri Dec 10 22:16:16 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: spif.c,v 1.9 2006/10/01 20:31:51 elad Exp $ */
+/* $NetBSD: spif.c,v 1.9.2.1 2010/12/10 22:16:16 bouyer Exp $ */
/* $OpenBSD: spif.c,v 1.12 2003/10/03 16:44:51 miod Exp $ */
/*
@@ -41,7 +41,7 @@
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: spif.c,v 1.9 2006/10/01 20:31:51 elad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: spif.c,v 1.9.2.1 2010/12/10 22:16:16 bouyer Exp $");
#include "spif.h"
#if NSPIF > 0
@@ -110,7 +110,7 @@
const struct cdevsw sbpp_cdevsw = {
sbpp_open, sbpp_close, sbpp_read, sbpp_write, sbpp_ioctl,
- nostop, notty, sbpp_poll, nommap, nokqfilter,
+ nostop, notty, sbpp_poll, nommap, nokqfilter, D_OTHER
};