mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 01:26:44 +07:00
[AGPGART] Drop duplicate setting of info->mode in agp_copy_info()
Spotted by Jeremy Fitzhardinge, this change crept in with the multiple backend support. It's clearly incorrect to overwrite info->mode after we just went to lengths to determine which bits to mask out. Signed-off-by: Dave Jones <davej@redhat.com>
This commit is contained in:
parent
66bb8bf8b2
commit
46acac3b4f
@ -319,7 +319,6 @@ int agp_copy_info(struct agp_bridge_data *bridge, struct agp_kern_info *info)
|
||||
info->mode = bridge->mode & ~AGP3_RESERVED_MASK;
|
||||
else
|
||||
info->mode = bridge->mode & ~AGP2_RESERVED_MASK;
|
||||
info->mode = bridge->mode;
|
||||
info->aper_base = bridge->gart_bus_addr;
|
||||
info->aper_size = agp_return_size();
|
||||
info->max_memory = bridge->max_memory_agp;
|
||||
|
Loading…
Reference in New Issue
Block a user