From: Dave Airlie Date: Mon, 15 Jun 2020 21:22:40 +0000 (+1000) Subject: virgl: change vendor id to reflect reality more. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=94acd419dad9075d288bb41a480d38e173587df0;p=mesa.git virgl: change vendor id to reflect reality more. virgl vendor id should probably be little more generic now. I think I picked this becuase the virtio pci id space was under RH's name and they did pay for it, but at this point I think it's better to just use something generic. Reviewed-by: Gert Wollny Part-of: --- diff --git a/src/gallium/drivers/virgl/virgl_screen.c b/src/gallium/drivers/virgl/virgl_screen.c index f646b194dac..eb3712b24cd 100644 --- a/src/gallium/drivers/virgl/virgl_screen.c +++ b/src/gallium/drivers/virgl/virgl_screen.c @@ -54,7 +54,7 @@ DEBUG_GET_ONCE_FLAGS_OPTION(virgl_debug, "VIRGL_DEBUG", debug_options, 0) static const char * virgl_get_vendor(struct pipe_screen *screen) { - return "Red Hat"; + return "Mesa/X.org"; }