summaryrefslogtreecommitdiff
path: root/sys/dev/i2c
diff options
context:
space:
mode:
authorskrll <skrll@NetBSD.org>2014-03-17 15:57:56 +0000
committerskrll <skrll@NetBSD.org>2014-03-17 15:57:56 +0000
commitcfed1f9e736296cf637cfefffe30ed69db54c017 (patch)
tree1e86c8d38bec03634c98ca1324b176f696182b9c /sys/dev/i2c
parent8e7147127a72e954abdc3baac537125d2c3cfbbb (diff)
Fix build.
Hi dh!
Diffstat (limited to 'sys/dev/i2c')
-rw-r--r--sys/dev/i2c/x1226.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/sys/dev/i2c/x1226.c b/sys/dev/i2c/x1226.c
index a2205995f32..87fb98ef718 100644
--- a/sys/dev/i2c/x1226.c
+++ b/sys/dev/i2c/x1226.c
@@ -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 *);