Module Name: src
Committed By: skrll
Date: Mon Mar 17 15:57:56 UTC 2014
Modified Files:
src/sys/dev/i2c: x1226.c
Log Message:
Fix build.
Hi dh!
To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 src/sys/dev/i2c/x1226.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/i2c/x1226.c
diff -u src/sys/dev/i2c/x1226.c:1.15 src/sys/dev/i2c/x1226.c:1.16
--- src/sys/dev/i2c/x1226.c:1.15 Sun Mar 16 05:20:27 2014
+++ src/sys/dev/i2c/x1226.c Mon Mar 17 15:57:56 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: x1226.c,v 1.15 2014/03/16 05:20:27 dholland Exp $ */
+/* $NetBSD: x1226.c,v 1.16 2014/03/17 15:57:56 skrll Exp $ */
/*
* Copyright (c) 2003 Shigeyuki Fukushima.
@@ -36,7 +36,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: x1226.c,v 1.15 2014/03/16 05:20:27 dholland Exp $");
+__KERNEL_RCSID(0, "$NetBSD: x1226.c,v 1.16 2014/03/17 15:57:56 skrll Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -77,13 +77,13 @@ const struct cdevsw xrtc_cdevsw = {
.d_close = xrtc_close,
.d_read = xrtc_read,
.d_write = xrtc_write,
- .d_ioctl =
- .d_stop = noioctl,
- .d_tty = nostop,
- .d_poll = notty,
- .d_mmap = nopoll,
- .d_kqfilter = nommap,
- .d_flag = nokqfilter, D_OTHER
+ .d_ioctl = noioctl,
+ .d_stop = nostop,
+ .d_tty = notty,
+ .d_poll = nopoll,
+ .d_mmap = nommap,
+ .d_kqfilter = nokqfilter,
+ .d_flag = D_OTHER
};
static int xrtc_clock_read(struct xrtc_softc *, struct clock_ymdhms *);