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

Commit 204a393c authored by Christian König's avatar Christian König Committed by Alex Deucher
Browse files

drm/radeon: remove set_page check from VM code



It's better to handle this in the chipset specific code.

Signed-off-by: default avatarChristian König <deathsimple@vodafone.de>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent d7025d89
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -1036,8 +1036,7 @@ static void radeon_vm_update_ptes(struct radeon_device *rdev,
		pte = radeon_sa_bo_gpu_addr(vm->page_tables[pt_idx]);
		pte += (addr & mask) * 8;

		if (((last_pte + 8 * count) != pte) ||
		    ((count + nptes) > 1 << 11)) {
		if ((last_pte + 8 * count) != pte) {

			if (count) {
				radeon_asic_vm_set_page(rdev, last_pte,