[patch] typo in 2.3.15 pre1

Jeff Garzik (jgarzik@pobox.com)
Fri, 20 Aug 1999 00:01:08 -0400


This is a multi-part message in MIME format.
--------------D6A1D238E716CB28CB1C39A6
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Linus,

There is a typo in drivers/video/atyfb.c that prevents it from
compiling. The attached patch should fix that. fbmem.c probably breaks
on Sparcs too; a patch for that has been forwarded to DaveM and Jakub.

FWIW I did not mean for that patch to be applied so soon, which was why
I said 'preliminary' and 'not yet tested' and such. ;-)

Regards,

Jeff

-- 
Any sufficiently advanced technology is indistinguishable from a rigged
demo.
	-- Andy Finkel
--------------D6A1D238E716CB28CB1C39A6
Content-Type: text/plain; charset=us-ascii;
 name="patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="patch"

Index: atyfb.c =================================================================== RCS file: /home/cvsgarzik/linux_2_3/drivers/video/atyfb.c,v retrieving revision 1.1.1.6 diff -u -r1.1.1.6 atyfb.c --- atyfb.c 1999/08/20 01:24:05 1.1.1.6 +++ atyfb.c 1999/08/20 03:19:57 @@ -1951,11 +1951,11 @@ fix->mmio_len = 0x400; fix->accel = FB_ACCEL_ATI_MACH64CT; } else if (Gx == VT_CHIP_ID || Gx == VU_CHIP_ID || Gx == VV_CHIP_ID) { - fix->mmio_start = info->ati_regbase_phys-0x400); + fix->mmio_start = info->ati_regbase_phys-0x400; fix->mmio_len = 0x800; fix->accel = FB_ACCEL_ATI_MACH64VT; } else { - fix->mmio_start = info->ati_regbase_phys-0x400); + fix->mmio_start = info->ati_regbase_phys-0x400; fix->mmio_len = 0x800; fix->accel = FB_ACCEL_ATI_MACH64GT; }

--------------D6A1D238E716CB28CB1C39A6--

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