Messages in this thread Patch in this message |  | | From | Sebastian Brückner <> | Date | Sun, 7 Jan 2001 14:08:24 +0100 | Subject | typo in patch-2.4.0-ac3.bz2 |
| |
Hi!
There's a typo in patch-2.4.0-ac3.bz2 file drivers/video/vesafb.c
there is a variable "temp_sze" - it has to be "temp_size"
--- linux/drivers/video/vesafb.c.old Sun Jan 7 13:29:40 2001 +++ linux/drivers/video/vesafb.c Sun Jan 7 13:29:03 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) { |  |