diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-09-19 21:34:44 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-09-19 21:34:44 +0000 |
commit | a4591103c140486435038d38b1873b078c739ee9 (patch) | |
tree | bf2f39423e915a30c02ad043b59d0fab8c16c912 /sys/arch/alpha | |
parent | 573a1b0063785cad158099921624b2c9e100bae4 (diff) |
constify speedtabs and make ttspeedtab() take a const struct speedtab *
Diffstat (limited to 'sys/arch/alpha')
-rw-r--r-- | sys/arch/alpha/tc/scc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/tc/scc.c b/sys/arch/alpha/tc/scc.c index 82fcc24a18e..00aa9a6b1e2 100644 --- a/sys/arch/alpha/tc/scc.c +++ b/sys/arch/alpha/tc/scc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: scc.c,v 1.19 2003/10/03 16:44:49 miod Exp $ */ +/* $OpenBSD: scc.c,v 1.20 2004/09/19 21:34:42 mickey Exp $ */ /* $NetBSD: scc.c,v 1.58 2002/03/17 19:40:27 atatat Exp $ */ /* @@ -136,7 +136,7 @@ struct scc_softc { * * Speed selections with Pclk=7.3728MHz, clock x16 */ -struct speedtab sccspeedtab[] = { +const struct speedtab sccspeedtab[] = { { 0, 0, }, { 50, 4606, }, { 75, 3070, }, |