> static void waitForPause(unsigned amount)
> {
> - ULONG the_time = jiffies + MS_TO_JIFFIES(amount);
> + ULONG the_time = jiffies + msecs_to_jiffies(amount);
> while (time_before_eq(jiffies, the_time))
> cpu_relax();You should probably replace this function with msleep completely. - To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html

