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

Commit c5416d66 authored by Randy Dunlap's avatar Randy Dunlap Committed by Dave Airlie
Browse files

gpu: fix qxl missing crc32_le



Fix build error: qxl uses crc32 functions so it needs to select
CRC32.

Also use angle quotes around a kernel header file name.

drivers/built-in.o: In function `qxl_display_read_client_monitors_config':
(.text+0x19d754): undefined reference to `crc32_le'

Signed-off-by: default avatarRandy Dunlap <rdunlap@infradead.org>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent 1302b23f
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -8,5 +8,6 @@ config DRM_QXL
        select DRM_KMS_HELPER
	select DRM_KMS_FB_HELPER
        select DRM_TTM
	select CRC32
	help
		QXL virtual GPU for Spice virtualization desktop integration. Do not enable this driver unless your distro ships a corresponding X.org QXL driver that can handle kernel modesetting.
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@
 */


#include "linux/crc32.h"
#include <linux/crc32.h>

#include "qxl_drv.h"
#include "qxl_object.h"