Module Name: src Committed By: christos Date: Wed Oct 5 16:27:15 UTC 2016
Modified Files: src/sys/arch/arm/omap: omap3_sdhc.c Log Message: fix typo To generate a diff of this commit: cvs rdiff -u -r1.28 -r1.29 src/sys/arch/arm/omap/omap3_sdhc.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/arch/arm/omap/omap3_sdhc.c diff -u src/sys/arch/arm/omap/omap3_sdhc.c:1.28 src/sys/arch/arm/omap/omap3_sdhc.c:1.29 --- src/sys/arch/arm/omap/omap3_sdhc.c:1.28 Wed Oct 5 09:37:48 2016 +++ src/sys/arch/arm/omap/omap3_sdhc.c Wed Oct 5 12:27:15 2016 @@ -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 @@ obiosdhc_match(device_t parent, cfdata_t #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))