Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/sdmmc Whitespace police
details: https://anonhg.NetBSD.org/src/rev/06fcbc93727d
branches: trunk
changeset: 464883:06fcbc93727d
user: mlelstv <mlelstv%NetBSD.org@localhost>
date: Mon Oct 28 06:31:39 2019 +0000
description:
Whitespace police
diffstat:
sys/dev/sdmmc/ld_sdmmc.c | 10 +++++-----
sys/dev/sdmmc/sdmmc_cis.c | 8 ++++----
sys/dev/sdmmc/sdmmc_mem.c | 6 +++---
sys/dev/sdmmc/sdmmcdevs | 6 +++---
4 files changed, 15 insertions(+), 15 deletions(-)
diffs (131 lines):
diff -r d7b10bf06241 -r 06fcbc93727d sys/dev/sdmmc/ld_sdmmc.c
--- a/sys/dev/sdmmc/ld_sdmmc.c Mon Oct 28 06:26:19 2019 +0000
+++ b/sys/dev/sdmmc/ld_sdmmc.c Mon Oct 28 06:31:39 2019 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ld_sdmmc.c,v 1.36 2019/03/19 07:08:43 mlelstv Exp $ */
+/* $NetBSD: ld_sdmmc.c,v 1.37 2019/10/28 06:31:39 mlelstv Exp $ */
/*
* Copyright (c) 2008 KIYOHARA Takashi
@@ -28,7 +28,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ld_sdmmc.c,v 1.36 2019/03/19 07:08:43 mlelstv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ld_sdmmc.c,v 1.37 2019/10/28 06:31:39 mlelstv Exp $");
#ifdef _KERNEL_OPT
#include "opt_sdmmc.h"
@@ -460,7 +460,7 @@
*/
#undef CFDRIVER_DECL
#define CFDRIVER_DECL(name, class, attr)
-#include "ioconf.c"
+#include "ioconf.c"
#endif
static int
@@ -474,13 +474,13 @@
static struct cfdriver * const no_cfdriver_vec[] = { NULL };
#endif
int error = 0;
-
+
#ifdef _MODULE
switch (cmd) {
case MODULE_CMD_INIT:
error = config_init_component(no_cfdriver_vec,
cfattach_ioconf_ld_sdmmc, cfdata_ioconf_ld_sdmmc);
- break;
+ break;
case MODULE_CMD_FINI:
error = config_fini_component(no_cfdriver_vec,
cfattach_ioconf_ld_sdmmc, cfdata_ioconf_ld_sdmmc);
diff -r d7b10bf06241 -r 06fcbc93727d sys/dev/sdmmc/sdmmc_cis.c
--- a/sys/dev/sdmmc/sdmmc_cis.c Mon Oct 28 06:26:19 2019 +0000
+++ b/sys/dev/sdmmc/sdmmc_cis.c Mon Oct 28 06:31:39 2019 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: sdmmc_cis.c,v 1.7 2019/09/24 04:56:54 mlelstv Exp $ */
+/* $NetBSD: sdmmc_cis.c,v 1.8 2019/10/28 06:31:39 mlelstv Exp $ */
/* $OpenBSD: sdmmc_cis.c,v 1.1 2006/06/01 21:53:41 uwe Exp $ */
/*
@@ -20,7 +20,7 @@
/* Routines to decode the Card Information Structure of SD I/O cards */
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sdmmc_cis.c,v 1.7 2019/09/24 04:56:54 mlelstv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sdmmc_cis.c,v 1.8 2019/10/28 06:31:39 mlelstv Exp $");
#ifdef _KERNEL_OPT
#include "opt_sdmmc.h"
@@ -202,7 +202,7 @@
}
#ifdef SDMMCCISDEBUG
- {
+ {
int i;
/* print the tuple */
@@ -317,7 +317,7 @@
if (sf->cis.manufacturer == SDMMC_VENDOR_SPECTEC &&
sf->cis.product == SDMMC_PRODUCT_SPECTEC_SDW820) {
/* This card lacks the VERS_1 tuple. */
- static const char cis1_info[] =
+ static const char cis1_info[] =
"Spectec\0SDIO WLAN Card\0SDW-820\0\0";
sf->cis.cis1_major = 0x01;
diff -r d7b10bf06241 -r 06fcbc93727d sys/dev/sdmmc/sdmmc_mem.c
--- a/sys/dev/sdmmc/sdmmc_mem.c Mon Oct 28 06:26:19 2019 +0000
+++ b/sys/dev/sdmmc/sdmmc_mem.c Mon Oct 28 06:31:39 2019 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: sdmmc_mem.c,v 1.69 2019/10/28 06:16:46 mlelstv Exp $ */
+/* $NetBSD: sdmmc_mem.c,v 1.70 2019/10/28 06:31:39 mlelstv Exp $ */
/* $OpenBSD: sdmmc_mem.c,v 1.10 2009/01/09 10:55:22 jsg Exp $ */
/*
@@ -45,7 +45,7 @@
/* Routines for SD/MMC memory cards. */
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sdmmc_mem.c,v 1.69 2019/10/28 06:16:46 mlelstv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sdmmc_mem.c,v 1.70 2019/10/28 06:31:39 mlelstv Exp $");
#ifdef _KERNEL_OPT
#include "opt_sdmmc.h"
@@ -771,7 +771,7 @@
break;
case 208000:
timing = SDMMC_TIMING_UHS_SDR104;
- break;
+ break;
default:
return 0;
}
diff -r d7b10bf06241 -r 06fcbc93727d sys/dev/sdmmc/sdmmcdevs
--- a/sys/dev/sdmmc/sdmmcdevs Mon Oct 28 06:26:19 2019 +0000
+++ b/sys/dev/sdmmc/sdmmcdevs Mon Oct 28 06:31:39 2019 +0000
@@ -1,4 +1,4 @@
- $NetBSD: sdmmcdevs,v 1.6 2019/08/24 11:24:00 mlelstv Exp $
+ $NetBSD: sdmmcdevs,v 1.7 2019/10/28 06:31:39 mlelstv Exp $
/* $OpenBSD: sdmmcdevs,v 1.8 2007/05/11 17:16:16 mglocker Exp $ */
/*
@@ -40,13 +40,13 @@
/* AboCom Systems, Inc. */
product ABOCOM SDW11G 0xac02 SDW11G
-/* Atheros */
+/* Atheros */
product ATHEROS AR6001_8 0x0108 AR6001
product ATHEROS AR6001_9 0x0109 AR6001
product ATHEROS AR6001_a 0x010a AR6001
product ATHEROS AR6001_b 0x010b AR6001
-/* Broadcom */
+/* Broadcom */
product BROADCOM BCM4324 0x4324 BCM 4324
product BROADCOM BCM4329 0x4329 BCM 4329
product BROADCOM BCM4330 0x4330 BCM 4330
Home |
Main Index |
Thread Index |
Old Index