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

Commit 46acac3b authored by Dave Jones's avatar Dave Jones
Browse files

[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: default avatarDave Jones <davej@redhat.com>
parent 66bb8bf8
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -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;