Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -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);