freebsd-dev/sys/dev/agp
Eitan Adler 7a22215c53 Fix undefined behavior: (1 << 31) is not defined as 1 is an int and this
shifts into the sign bit.  Instead use (1U << 31) which gets the
expected result.

This fix is not ideal as it assumes a 32 bit int, but does fix the issue
for most cases.

A similar change was made in OpenBSD.

Discussed with:	-arch, rdivacky
Reviewed by:	cperciva
2013-11-30 22:17:27 +00:00
..
agp_ali.c Remove unneeded semicolons. 2013-01-01 18:16:49 +00:00
agp_amd64.c Remove unneeded semicolons. 2013-01-01 18:16:49 +00:00
agp_amd.c Remove unneeded semicolons. 2013-01-01 18:16:49 +00:00
agp_apple.c Remove unneeded header from agp: opt_bus.h 2012-11-15 18:49:17 +00:00
agp_ati.c Remove unneeded semicolons. 2013-01-01 18:16:49 +00:00
agp_i810.c Fix undefined behavior: (1 << 31) is not defined as 1 is an int and this 2013-11-30 22:17:27 +00:00
agp_i810.h A rewrite of the i810 bits of the agp(4) driver. New driver supports 2012-05-22 10:59:26 +00:00
agp_if.m A rewrite of the i810 bits of the agp(4) driver. New driver supports 2012-05-22 10:59:26 +00:00
agp_intel.c Remove unneeded semicolons. 2013-01-01 18:16:49 +00:00
agp_nvidia.c Remove unneeded header from agp: opt_bus.h 2012-11-15 18:49:17 +00:00
agp_sis.c Remove unneeded semicolons. 2013-01-01 18:16:49 +00:00
agp_via.c Remove unneeded semicolons. 2013-01-01 18:16:49 +00:00
agp.c Remove the deprecated VM_ALLOC_RETRY flag for the vm_page_grab(9). 2013-08-22 07:39:53 +00:00
agppriv.h A rewrite of the i810 bits of the agp(4) driver. New driver supports 2012-05-22 10:59:26 +00:00
agpreg.h A rewrite of the i810 bits of the agp(4) driver. New driver supports 2012-05-22 10:59:26 +00:00
agpvar.h A rewrite of the i810 bits of the agp(4) driver. New driver supports 2012-05-22 10:59:26 +00:00