Commit b7d0640f authored by Stuart Bennett's avatar Stuart Bennett Committed by Dave Airlie

agp/sis: Clear bit 2 from aperture size byte as well

SiS M650 has aperture size byte 0x44
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent 9a4c8546
...@@ -27,8 +27,8 @@ static int sis_fetch_size(void) ...@@ -27,8 +27,8 @@ static int sis_fetch_size(void)
values = A_SIZE_8(agp_bridge->driver->aperture_sizes); values = A_SIZE_8(agp_bridge->driver->aperture_sizes);
for (i = 0; i < agp_bridge->driver->num_aperture_sizes; i++) { for (i = 0; i < agp_bridge->driver->num_aperture_sizes; i++) {
if ((temp_size == values[i].size_value) || if ((temp_size == values[i].size_value) ||
((temp_size & ~(0x03)) == ((temp_size & ~(0x07)) ==
(values[i].size_value & ~(0x03)))) { (values[i].size_value & ~(0x07)))) {
agp_bridge->previous_size = agp_bridge->previous_size =
agp_bridge->current_size = (void *) (values + i); agp_bridge->current_size = (void *) (values + i);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment