From be49fb051d236306579e33b90a65cb7b7b94c3e2 Mon Sep 17 00:00:00 2001 From: Kenneth Graunke Date: Mon, 11 Feb 2019 11:05:48 -0800 Subject: [PATCH] iris: Stop chopping off the first nine characters of the renderer string --- src/gallium/drivers/iris/iris_screen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/iris/iris_screen.c b/src/gallium/drivers/iris/iris_screen.c index 5ab3076ad0d..0ee07a7e4f6 100644 --- a/src/gallium/drivers/iris/iris_screen.c +++ b/src/gallium/drivers/iris/iris_screen.c @@ -86,7 +86,7 @@ iris_get_name(struct pipe_screen *pscreen) chipset = "Unknown Intel Chipset"; break; } - return &chipset[9]; + return chipset; } static int -- 2.30.2