Commit de333e21 authored by Muli Ben-Yehuda's avatar Muli Ben-Yehuda Committed by Linus Torvalds

[PATCH] trident 1/3 fix "did not come out of reset"

The M5451 can sometimes not come out of reset.

This is non fatal and it continues to work fine, so print a nasty message
but don't fail the driver initialization.
parent 26c91ca0
......@@ -3933,8 +3933,10 @@ static int ali_reset_5451(struct trident_card *card)
udelay(5000);
}
printk(KERN_ERR "ALi 5451 did not come out of reset.\n");
return 1;
/* This is non fatal if you have a non PM capable codec.. */
printk(KERN_ERR "ALi 5451 did not come out of reset "
"- continuing anyway.\n");
return 0;
}
/* AC97 codec initialisation. */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment