    Summary: Speed up ali5451 initialization

    The patch speeds up loading the ali5451 driver by lowering the
    wait time in snd_ali_codec_ready()

    Author: Vince Busam <vince@sixpak.org
    Signed-off-by: Vince Busam <vince@sixpak.org>

--- linux-source-2.6.12/sound/pci/ali5451/ali5451.c	2005-10-10 05:12:34.000000000 -0700
+++ linux-source-2.6.12-new/sound/pci/ali5451/ali5451.c	2005-11-05 11:25:11.000000000 -0800
@@ -399,7 +399,7 @@ static int snd_ali_codec_ready(	ali_t *c
 	unsigned long end_time;
 	unsigned int res;
 	
-	end_time = jiffies + 10 * (HZ >> 2);
+	end_time = jiffies + 10 * (HZ >> 6);
 	do {
 		res = snd_ali_5451_peek(codec,port);
 		if (! (res & 0x8000))
