From 13e71177dff78f1df3cf6d09ca3bee8711716a81 Mon Sep 17 00:00:00 2001 From: tanimura Date: Sun, 15 Oct 2006 05:04:06 +0000 Subject: Fix the wraparound of memsize >=2GB. --- sys/dev/agp/agp.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'sys/dev/agp') diff --git a/sys/dev/agp/agp.c b/sys/dev/agp/agp.c index 92426ae..7fdbb73 100644 --- a/sys/dev/agp/agp.c +++ b/sys/dev/agp/agp.c @@ -180,7 +180,7 @@ agp_free_gatt(struct agp_gatt *gatt) free(gatt, M_AGP); } -static int agp_max[][2] = { +static u_int agp_max[][2] = { {0, 0}, {32, 4}, {64, 28}, @@ -197,7 +197,8 @@ int agp_generic_attach(device_t dev) { struct agp_softc *sc = device_get_softc(dev); - int rid, memsize, i; + int rid, i; + u_int memsize; /* * Find and map the aperture. -- cgit v1.1