summaryrefslogtreecommitdiff
path: root/sys/dev/videovar.h
diff options
context:
space:
mode:
authorMarcus Glocker <mglocker@cvs.openbsd.org>2008-05-25 07:47:48 +0000
committerMarcus Glocker <mglocker@cvs.openbsd.org>2008-05-25 07:47:48 +0000
commit2bb33be3f61e19ed98077eeb17cf20de10556487 (patch)
treecede9cb5a810d869e9eb3fb11e7081bf448ceee3 /sys/dev/videovar.h
parent57ca846a119b68e6a0c20f8ae08b6bd07e0345bf (diff)
Spacing. Comments. strncpy() -> strlcpy().
Diffstat (limited to 'sys/dev/videovar.h')
-rw-r--r--sys/dev/videovar.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/dev/videovar.h b/sys/dev/videovar.h
index 53999bfe958..c8fdcb00a87 100644
--- a/sys/dev/videovar.h
+++ b/sys/dev/videovar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: videovar.h,v 1.2 2008/05/24 19:37:34 mglocker Exp $ */
+/* $OpenBSD: videovar.h,v 1.3 2008/05/25 07:47:47 mglocker Exp $ */
/*
* Copyright (c) 2008 Robert Nagy <robert@openbsd.org>
*
@@ -19,14 +19,14 @@
#define _SYS_DEV_VIDEOVAR_H
struct video_softc {
- struct device dev;
- void *hw_hdl; /* hardware driver handle */
- struct device *sc_dev; /* hardware device struct */
- struct video_hw_if *hw_if; /* hardware interface */
- char sc_dying; /* device detached */
+ struct device dev;
+ void *hw_hdl; /* hardware driver handle */
+ struct device *sc_dev; /* hardware device struct */
+ struct video_hw_if *hw_if; /* hardware interface */
+ char sc_dying; /* device detached */
- int sc_fsize;
- uint8_t *sc_fbuffer;
+ int sc_fsize;
+ uint8_t *sc_fbuffer;
};
#endif /* _SYS_DEV_VIDEOVAR_H */