- jiffies signedness fix

- Fix compile warning


 25-akpm/sound/pci/cs46xx/cs46xx_lib.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff -puN sound/pci/cs46xx/cs46xx_lib.c~cs46xx-fixes sound/pci/cs46xx/cs46xx_lib.c
--- 25/sound/pci/cs46xx/cs46xx_lib.c~cs46xx-fixes	Tue Mar 18 17:17:32 2003
+++ 25-akpm/sound/pci/cs46xx/cs46xx_lib.c	Tue Mar 18 17:25:31 2003
@@ -1941,7 +1941,8 @@ static int snd_cs46xx_iec958_put(snd_kco
 		res = (change != chip->dsp_spos_instance->spdif_status_in);
 		break;
 	default:
-		snd_assert(0, return -EINVAL);
+		res = -EINVAL;
+		snd_assert(0, (void)0);
 	}
 
 	return res;
@@ -2365,7 +2366,7 @@ static snd_kcontrol_new_t snd_hercules_c
 
 static void snd_cs46xx_sec_codec_reset (ac97_t * ac97)
 {
-	signed long end_time;
+	unsigned long end_time;
 	int err;
 
 	/* reset to defaults */

_