mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-16 09:13:55 +08:00
agp/sis: Clear bit 2 from aperture size byte as well
SiS M650 has aperture size byte 0x44 Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
9a4c8546f3
commit
b7d0640f92
@ -27,8 +27,8 @@ static int sis_fetch_size(void)
|
||||
values = A_SIZE_8(agp_bridge->driver->aperture_sizes);
|
||||
for (i = 0; i < agp_bridge->driver->num_aperture_sizes; i++) {
|
||||
if ((temp_size == values[i].size_value) ||
|
||||
((temp_size & ~(0x03)) ==
|
||||
(values[i].size_value & ~(0x03)))) {
|
||||
((temp_size & ~(0x07)) ==
|
||||
(values[i].size_value & ~(0x07)))) {
|
||||
agp_bridge->previous_size =
|
||||
agp_bridge->current_size = (void *) (values + i);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user