From 44e652af9af7b3136011c9f3ad537782b604c004 Mon Sep 17 00:00:00 2001 From: Karol Herbst Date: Tue, 11 Jul 2023 17:53:49 +0200 Subject: [PATCH] rusticl/mesa: make svm_migrate optional It's just a hint and drivers might want to ignore implementing it for now. Signed-off-by: Karol Herbst Reviewed-by: Dave Airlie Part-of: --- src/gallium/frontends/rusticl/mesa/pipe/context.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/gallium/frontends/rusticl/mesa/pipe/context.rs b/src/gallium/frontends/rusticl/mesa/pipe/context.rs index c3ddf7653af..22a4834bb69 100644 --- a/src/gallium/frontends/rusticl/mesa/pipe/context.rs +++ b/src/gallium/frontends/rusticl/mesa/pipe/context.rs @@ -572,8 +572,6 @@ impl PipeContext { to_device, content_undefined, ); - } else { - panic!("svm_migrate not implemented but called!"); } } }