diff options
author | Jocelyn Falempe <jfalempe@redhat.com> | 2024-07-17 11:48:41 +0300 |
---|---|---|
committer | Jocelyn Falempe <jfalempe@redhat.com> | 2024-07-19 12:38:24 +0300 |
commit | 3a9b77cee7502f7450c725d4ead2c4a44924d158 (patch) | |
tree | 6531c57236850f57d469614110884a0cc3588c3e /drivers/gpu/drm/Kconfig | |
parent | c2c2a91f3868515969a758042887fdc722216525 (diff) | |
download | linux-3a9b77cee7502f7450c725d4ead2c4a44924d158.tar.xz |
drm/panic: Remove build time dependency with FRAMEBUFFER_CONSOLE
Now that fbcon has the skip_panic option, there is no more conflicts
between drm_panic and fbcon.
Remove the build time dependency, so they can be both enabled.
Signed-off-by: Jocelyn Falempe <jfalempe@redhat.com>
Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20240717090102.968152-4-jfalempe@redhat.com
Diffstat (limited to 'drivers/gpu/drm/Kconfig')
-rw-r--r-- | drivers/gpu/drm/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/Kconfig b/drivers/gpu/drm/Kconfig index 6dd0016fc9cd..a22cab218004 100644 --- a/drivers/gpu/drm/Kconfig +++ b/drivers/gpu/drm/Kconfig @@ -107,7 +107,7 @@ config DRM_KMS_HELPER config DRM_PANIC bool "Display a user-friendly message when a kernel panic occurs" - depends on DRM && !(FRAMEBUFFER_CONSOLE && VT_CONSOLE) + depends on DRM select FONT_SUPPORT help Enable a drm panic handler, which will display a user-friendly message |