From ff380a6cd7d8691a82a982151ef481868701939e Mon Sep 17 00:00:00 2001 From: nonaka Date: Tue, 26 Jun 2007 15:08:42 +0000 Subject: [PATCH] s/const const/const/ --- sys/arch/arm/xscale/pxa2x0_i2s.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/arch/arm/xscale/pxa2x0_i2s.c b/sys/arch/arm/xscale/pxa2x0_i2s.c index 5bfc66e91bee..0dd4ebb5bb45 100644 --- a/sys/arch/arm/xscale/pxa2x0_i2s.c +++ b/sys/arch/arm/xscale/pxa2x0_i2s.c @@ -1,4 +1,4 @@ -/* $NetBSD: pxa2x0_i2s.c,v 1.4 2007/03/05 00:44:31 nonaka Exp $ */ +/* $NetBSD: pxa2x0_i2s.c,v 1.5 2007/06/26 15:08:42 nonaka Exp $ */ /* $OpenBSD: pxa2x0_i2s.c,v 1.7 2006/04/04 11:45:40 pascoe Exp $ */ /* @@ -18,7 +18,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: pxa2x0_i2s.c,v 1.4 2007/03/05 00:44:31 nonaka Exp $"); +__KERNEL_RCSID(0, "$NetBSD: pxa2x0_i2s.c,v 1.5 2007/06/26 15:08:42 nonaka Exp $"); #include #include @@ -162,7 +162,7 @@ pxa2x0_i2s_setspeed(struct pxa2x0_i2s_softc *sc, u_int *argp) {44100, SADIV_2_836MHz}, {48000, SADIV_3_058MHz}, }; - const const int n = (int)__arraycount(speed_table); + const int n = (int)__arraycount(speed_table); u_int arg = (u_int)*argp; int selected = -1; int i;