From 61baadbc7f92679bdef648ebfe6d6f8d54763c27 Mon Sep 17 00:00:00 2001 From: martin Date: Sun, 15 Oct 2006 19:29:10 +0000 Subject: Add missing initializer --- sys/dev/sbus/bpp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/dev') diff --git a/sys/dev/sbus/bpp.c b/sys/dev/sbus/bpp.c index 62a3e4aa716..3e6ef0fd18c 100644 --- a/sys/dev/sbus/bpp.c +++ b/sys/dev/sbus/bpp.c @@ -1,4 +1,4 @@ -/* $NetBSD: bpp.c,v 1.25 2005/12/11 12:23:44 christos Exp $ */ +/* $NetBSD: bpp.c,v 1.26 2006/10/15 19:29:10 martin Exp $ */ /*- * Copyright (c) 1998 The NetBSD Foundation, Inc. @@ -37,7 +37,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: bpp.c,v 1.25 2005/12/11 12:23:44 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: bpp.c,v 1.26 2006/10/15 19:29:10 martin Exp $"); #include #include @@ -133,7 +133,7 @@ dev_type_kqfilter(bppkqfilter); const struct cdevsw bpp_cdevsw = { bppopen, bppclose, noread, bppwrite, bppioctl, - nostop, notty, bpppoll, nommap, bppkqfilter, + nostop, notty, bpppoll, nommap, bppkqfilter, D_TTY }; #define BPPUNIT(dev) (minor(dev)) -- cgit