svn commit: r365376 - stable/12/sys/dev/drm

Niclas Zeising zeising at FreeBSD.org
Sun Sep 6 11:23:59 UTC 2020


Author: zeising (doc,ports committer)
Date: Sun Sep  6 11:23:58 2020
New Revision: 365376
URL: https://svnweb.freebsd.org/changeset/base/365376

Log:
  drm: Update deprecation message
  
  Update the deprecation message in the drm1 (aka legacy drm or drm-legacy)
  drivers to not point towards the drm-legacy-kmod port, as that is being
  deprecated.
  
  This is a direct commit to stable/12 since the drm1 code has been removed
  from 13 already.
  
  Reviewed by:	imp
  Approved by:	imp
  Differential Revision:	https://reviews.freebsd.org/D26175

Modified:
  stable/12/sys/dev/drm/drm.h

Modified: stable/12/sys/dev/drm/drm.h
==============================================================================
--- stable/12/sys/dev/drm/drm.h	Sun Sep  6 10:23:13 2020	(r365375)
+++ stable/12/sys/dev/drm/drm.h	Sun Sep  6 11:23:58 2020	(r365376)
@@ -1145,12 +1145,10 @@ typedef struct drm_mm_init_arg drm_mm_init_arg_t;
 typedef enum drm_bo_type drm_bo_type_t;
 #endif
 
-#define DRM_PORT "graphics/drm-legacy-kmod"
-
 #define DRM_OBSOLETE(dev)							\
     do {									\
 	device_printf(dev, "=======================================================\n"); \
-	device_printf(dev, "This code is obsolete abandonware. Install the " DRM_PORT " pkg\n"); \
+	device_printf(dev, "This code is deprecated.\n"); \
 	device_printf(dev, "=======================================================\n"); \
 	gone_in_dev(dev, 13, "drm drivers");					\
     } while (0)


More information about the svn-src-all mailing list