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

Commit 1119eef0 authored by Rickard Strandqvist's avatar Rickard Strandqvist Committed by Ben Skeggs
Browse files

drm/nouveau/gem: Remove unused function



Remove the function domain_to_ttm() that is not used anywhere.

This was partially found by using a static code analysis program
called cppcheck.

Signed-off-by: default avatarRickard Strandqvist <rickard_strandqvist@spectrumdigital.se>
Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent 26b40d81
Loading
Loading
Loading
Loading
+0 −13
Original line number Diff line number Diff line
@@ -850,19 +850,6 @@ nouveau_gem_ioctl_pushbuf(struct drm_device *dev, void *data,
	return nouveau_abi16_put(abi16, ret);
}

static inline uint32_t
domain_to_ttm(struct nouveau_bo *nvbo, uint32_t domain)
{
	uint32_t flags = 0;

	if (domain & NOUVEAU_GEM_DOMAIN_VRAM)
		flags |= TTM_PL_FLAG_VRAM;
	if (domain & NOUVEAU_GEM_DOMAIN_GART)
		flags |= TTM_PL_FLAG_TT;

	return flags;
}

int
nouveau_gem_ioctl_cpu_prep(struct drm_device *dev, void *data,
			   struct drm_file *file_priv)