Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/ic formatting
details: https://anonhg.NetBSD.org/src/rev/585feba0980a
branches: trunk
changeset: 997630:585feba0980a
user: tnn <tnn%NetBSD.org@localhost>
date: Sun Mar 17 01:33:02 2019 +0000
description:
formatting
diffstat:
sys/dev/ic/ssdfb.c | 19 ++++++++++++-------
1 files changed, 12 insertions(+), 7 deletions(-)
diffs (65 lines):
diff -r bda0639b449d -r 585feba0980a sys/dev/ic/ssdfb.c
--- a/sys/dev/ic/ssdfb.c Sun Mar 17 01:14:25 2019 +0000
+++ b/sys/dev/ic/ssdfb.c Sun Mar 17 01:33:02 2019 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ssdfb.c,v 1.1 2019/03/17 00:57:15 tnn Exp $ */
+/* $NetBSD: ssdfb.c,v 1.2 2019/03/17 01:33:02 tnn Exp $ */
/*
* Copyright (c) 2019 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ssdfb.c,v 1.1 2019/03/17 00:57:15 tnn Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ssdfb.c,v 1.2 2019/03/17 01:33:02 tnn Exp $");
#include "opt_ddb.h"
@@ -789,7 +789,8 @@
}
static void
-ssdfb_thread(void *arg) {
+ssdfb_thread(void *arg)
+{
struct ssdfb_softc *sc = (struct ssdfb_softc *)arg;
int error;
@@ -824,12 +825,14 @@
}
static void
-ssdfb_set_usepoll(struct ssdfb_softc *sc, bool enable) {
+ssdfb_set_usepoll(struct ssdfb_softc *sc, bool enable)
+{
sc->sc_usepoll = enable;
}
static int
-ssdfb_sync(struct ssdfb_softc *sc, bool usepoll) {
+ssdfb_sync(struct ssdfb_softc *sc, bool usepoll)
+{
struct rasops_info *ri = &sc->sc_ri;
int block_size = 8;
int ri_block_stride = ri->ri_stride * block_size;
@@ -933,7 +936,8 @@
}
static const struct ssdfb_product *
-ssdfb_lookup_product(ssdfb_product_id_t id) {
+ssdfb_lookup_product(ssdfb_product_id_t id)
+{
int i;
for (i = 0; i < __arraycount(ssdfb_products); i++) {
@@ -945,7 +949,8 @@
}
static int
-ssdfb_pick_font(int *cookiep, struct wsdisplay_font **fontp) {
+ssdfb_pick_font(int *cookiep, struct wsdisplay_font **fontp)
+{
int error;
int c;
struct wsdisplay_font *f;
Home |
Main Index |
Thread Index |
Old Index