Re: Another it87 patch.

Greg KH (greg@kroah.com)
Fri, 9 May 2003 15:00:06 -0700


On Thu, May 08, 2003 at 04:25:24AM -0400, Zephaniah E. Hull wrote:
> This is against my last.

Thanks, I've applied all 3 of these patches to my tree, and will send
them on.

One minor note though:
> +static int log2(int val)
> +{
> + int answer = 0;
> + while ((val >>= 1))
> + answer++;
> + return answer;
> +}

Can you start using the proper kernel coding style of 8 character tabs?
I've fixed up this in your different patches before applying them, but
in the future it would be nicer if I didn't have to.

thanks,

greg k-h
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/