From 3b198668821685295e1e122df92adfbacc55a8f5 Mon Sep 17 00:00:00 2001 From: LaserEyess Date: Mon, 31 Jul 2023 14:35:24 -0400 Subject: drm: bump minimum version to 2.4.105 Debian 12 is out, with 2.4.114, and Ubuntu 22.04 has 2.4.110, this #ifdef is no longer needed --- video/out/drm_common.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'video/out/drm_common.c') diff --git a/video/out/drm_common.c b/video/out/drm_common.c index 470cab4668..b4064879de 100644 --- a/video/out/drm_common.c +++ b/video/out/drm_common.c @@ -809,15 +809,11 @@ static int open_card_path(const char *path) static bool card_supports_kms(const char *path) { -#if HAVE_DRM_IS_KMS int fd = open_card_path(path); bool ret = fd != -1 && drmIsKMS(fd); if (fd != -1) close(fd); return ret; -#else - return true; -#endif } static void get_primary_device_path(struct vo_drm_state *drm) -- cgit v1.2.3