Messages in this thread Patch in this message |  | | Date | Sun, 7 Jan 2001 04:10:38 +0100 (CET) | From | Dag Wieers <> | Subject | Typo in drivers/video/vesafb.c for 2.4.0-ac3 |
| |
Hi,
Due to a typo in vesafb_init, compiling failes.
Here's more information:
--- drivers/video/vesafb.c.orig Sun Jan 7 03:59:45 2001 +++ drivers/video/vesafb.c Sun Jan 7 03:59:52 2001 @@ -637,7 +637,7 @@ int temp_size = video_size; /* Find the largest power-of-two */ while (temp_size & (temp_size - 1)) - temp_sze &= (temp_size - 1); + temp_size &= (temp_size - 1);
/* Try and find a power of two to add */ while (temp_size && mtrr_add(video_base, temp_size, MTRR_TYPE_WRCOMB, 1)==-EINVAL) { -- dag wieers, <dag@mind.be>, http://mind.be/ -- Out of swap, out of luck.
- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/
|  |