Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/arm/broadcom Fix typo in previous
details: https://anonhg.NetBSD.org/src/rev/efb77c39fc7c
branches: trunk
changeset: 802406:efb77c39fc7c
user: skrll <skrll%NetBSD.org@localhost>
date: Sat Sep 13 13:20:38 2014 +0000
description:
Fix typo in previous
diffstat:
sys/arch/arm/broadcom/bcm2835_emmc.c | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diffs (45 lines):
diff -r 162f0c850817 -r efb77c39fc7c sys/arch/arm/broadcom/bcm2835_emmc.c
--- a/sys/arch/arm/broadcom/bcm2835_emmc.c Sat Sep 13 11:07:08 2014 +0000
+++ b/sys/arch/arm/broadcom/bcm2835_emmc.c Sat Sep 13 13:20:38 2014 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: bcm2835_emmc.c,v 1.14 2014/09/13 08:08:24 skrll Exp $ */
+/* $NetBSD: bcm2835_emmc.c,v 1.15 2014/09/13 13:20:38 skrll Exp $ */
/*-
* Copyright (c) 2012 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: bcm2835_emmc.c,v 1.14 2014/09/13 08:08:24 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: bcm2835_emmc.c,v 1.15 2014/09/13 13:20:38 skrll Exp $");
#include "bcmdmac.h"
@@ -81,7 +81,7 @@
static int bcmemmc_match(device_t, struct cfdata *, void *);
static void bcmemmc_attach(device_t, device_t, void *);
static void bcmemmc_attach_i(device_t);
-#if BCMDMAC > 0
+#if NBCMDMAC > 0
static int bcmemmc_xfer_data_dma(struct sdhc_host *, struct sdmmc_command *);
static void bcmemmc_dma_done(void *);
#endif
@@ -153,7 +153,7 @@
}
aprint_normal_dev(self, "interrupting on intr %d\n", aaa->aaa_intr);
-#if BCMDMAC > 0
+#if NBCMDMAC > 0
sc->sc_dmac = bcm_dmac_alloc(BCM_DMAC_TYPE_NORMAL, IPL_SDMMC,
bcmemmc_dma_done, sc);
if (sc->sc_dmac == NULL)
@@ -237,7 +237,7 @@
bus_space_unmap(sc->sc_iot, sc->sc_ioh, sc->sc_ios);
}
-#if BCMDMAC > 0
+#if NBCMDMAC > 0
static int
bcmemmc_xfer_data_dma(struct sdhc_host *hp, struct sdmmc_command *cmd)
{
Home |
Main Index |
Thread Index |
Old Index