Date: Sun, 6 Sep 2020 11:23:59 +0000 (UTC) From: Niclas Zeising <zeising@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org Subject: svn commit: r365376 - stable/12/sys/dev/drm Message-ID: <202009061123.086BNx6T026878@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202009061123.086BNx6T026878>