From 2e252670b5da9369d6860fcea564e75c3443079b Mon Sep 17 00:00:00 2001 From: christos Date: Wed, 30 Aug 2006 02:00:26 +0000 Subject: [PATCH] static goes first --- sys/dev/pci/fms.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/sys/dev/pci/fms.c b/sys/dev/pci/fms.c index f79ba0ac2d3d..79ae2e0adfb5 100644 --- a/sys/dev/pci/fms.c +++ b/sys/dev/pci/fms.c @@ -1,4 +1,4 @@ -/* $NetBSD: fms.c,v 1.25 2005/12/11 12:22:49 christos Exp $ */ +/* $NetBSD: fms.c,v 1.26 2006/08/30 02:00:26 christos Exp $ */ /*- * Copyright (c) 1999 The NetBSD Foundation, Inc. @@ -41,7 +41,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: fms.c,v 1.25 2005/12/11 12:22:49 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: fms.c,v 1.26 2006/08/30 02:00:26 christos Exp $"); #include "mpu.h" @@ -145,6 +145,7 @@ static const struct audio_hw_if fms_hw_if = { fms_trigger_output, fms_trigger_input, NULL, + NULL, }; static int fms_attach_codec(void *, struct ac97_codec_if *); @@ -529,10 +530,10 @@ fms_query_encoding(void *addr, struct audio_encoding *fp) * What a pity FM801 does not have 24000 * 24000 -> 22050 sounds rather poor */ -struct { +static struct { int limit; int rate; -} static const fms_rates[11] = { +} const fms_rates[11] = { { 6600, 5500 }, { 8750, 8000 }, { 10250, 9600 },