Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/arm/omap fix typo



details:   https://anonhg.NetBSD.org/src/rev/9339f39a92ee
branches:  trunk
changeset: 348149:9339f39a92ee
user:      christos <christos%NetBSD.org@localhost>
date:      Wed Oct 05 16:27:15 2016 +0000

description:
fix typo

diffstat:

 sys/arch/arm/omap/omap3_sdhc.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r dc5da6c61180 -r 9339f39a92ee sys/arch/arm/omap/omap3_sdhc.c
--- a/sys/arch/arm/omap/omap3_sdhc.c    Wed Oct 05 16:01:59 2016 +0000
+++ b/sys/arch/arm/omap/omap3_sdhc.c    Wed Oct 05 16:27:15 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: omap3_sdhc.c,v 1.28 2016/10/05 13:37:48 christos Exp $ */
+/*     $NetBSD: omap3_sdhc.c,v 1.29 2016/10/05 16:27:15 christos Exp $ */
 /*-
  * Copyright (c) 2011 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -29,7 +29,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: omap3_sdhc.c,v 1.28 2016/10/05 13:37:48 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: omap3_sdhc.c,v 1.29 2016/10/05 16:27:15 christos Exp $");
 
 #include "opt_omap.h"
 #include "edma.h"
@@ -200,7 +200,7 @@
 #endif
 
 #ifdef TI_AM335X
-       for (size _t i = 0; i < __arraycount(am335x_mmchs); i++)
+       for (size_t i = 0; i < __arraycount(am335x_mmchs); i++)
                if (device_is_a(parent, am335x_mmchs[i].as_parent_name) &&
                    (oa->obio_addr == am335x_mmchs[i].as_base_addr) &&
                    (oa->obio_intr == am335x_mmchs[i].as_intr))



Home | Main Index | Thread Index | Old Index