[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[debian-users:27166] サウンドカードの設定つづき
速度と申します。
Kernel 2.2.18 に付属の via82cxxx_audio.o にてサウンドを試みているのですが、
どうも、ローディング時に、以下のメッセージが出力されています。
これはなにかベースアドレスの設定等が必要だということなのでしょうか?
現在のところ小さな音量でいちお音がなるのですが、音量をあげる事ができず、こまっています。
FileName via82cxxx_audio.c
assert (codec->private_data != NULL);
card = codec->private_data;
data = (reg << 16) | VIA_CR80_READ;
outl (data, card->baseaddr + VIA_BASE0_AC97_CTRL);
udelay (20);
for (counter = VIA_COUNTER_LIMIT; counter > 0; counter--) {
if (inl (card->baseaddr + 0x80) & VIA_CR80_VALID)
goto out;
udelay(10);
if (current->need_resched)
schedule ();
}
printk (KERN_WARNING PFX "timeout while reading AC97
codec\n"); ←ここでメッセージが出力されています。
goto err_out;
--