summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Knudsen <mk@cvs.openbsd.org>2006-07-09 21:44:07 +0000
committerMichael Knudsen <mk@cvs.openbsd.org>2006-07-09 21:44:07 +0000
commitfbe053aade175fa3c0cbf3b369c25cc8b2274184 (patch)
treecee35addc542b27c9871df0e7ff4c6a907dbffd2
parent14185752f275aa406d755fb92355ee37b1311ace (diff)
Some more KNF stuff I missed.
-rw-r--r--sys/dev/pci/wdt.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/sys/dev/pci/wdt.c b/sys/dev/pci/wdt.c
index 95a86ff99d4..707cc45c684 100644
--- a/sys/dev/pci/wdt.c
+++ b/sys/dev/pci/wdt.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: wdt.c,v 1.12 2006/07/09 21:18:45 mk Exp $ */
+/* $OpenBSD: wdt.c,v 1.13 2006/07/09 21:44:06 mk Exp $ */
/*-
* Copyright (c) 1998,1999 Alex Nash
@@ -55,17 +55,17 @@ struct wdt_softc {
bus_space_handle_t ioh;
};
-int wdtprobe(struct device *, void *, void *);
-void wdtattach(struct device *, struct device *, void *);
-
-int wdt_is501(struct wdt_softc *);
-void wdt_8254_count(struct wdt_softc *, int, u_int16_t);
-void wdt_8254_mode(struct wdt_softc *, int, int);
-int wdt_set_timeout(void *, int);
-void wdt_init_timer(struct wdt_softc *);
-void wdt_buzzer_off(struct wdt_softc *);
-void wdt_timer_disable(struct wdt_softc *);
-void wdt_buzzer_enable(struct wdt_softc *);
+int wdtprobe(struct device *, void *, void *);
+void wdtattach(struct device *, struct device *, void *);
+
+int wdt_is501(struct wdt_softc *);
+void wdt_8254_count(struct wdt_softc *, int, u_int16_t);
+void wdt_8254_mode(struct wdt_softc *, int, int);
+int wdt_set_timeout(void *, int);
+void wdt_init_timer(struct wdt_softc *);
+void wdt_buzzer_off(struct wdt_softc *);
+void wdt_timer_disable(struct wdt_softc *);
+void wdt_buzzer_enable(struct wdt_softc *);
struct cfattach wdt_ca = {
sizeof(struct wdt_softc), wdtprobe, wdtattach