diff options
author | Arnd Bergmann <arnd@arndb.de> | 2024-12-12 16:39:50 +0100 |
---|---|---|
committer | Jocelyn Falempe <jfalempe@redhat.com> | 2024-12-12 18:26:32 +0100 |
commit | 322a00efec6a7f44a9204fad4e15d7f83e0e1ed2 (patch) | |
tree | 1f49adf9cc10c84ff9212449136c34cfddbf4862 /lib | |
parent | drm/vc4: unlock on error in vc4_hvs_get_fifo_frame_count() (diff) | |
download | linux-322a00efec6a7f44a9204fad4e15d7f83e0e1ed2.tar.xz linux-322a00efec6a7f44a9204fad4e15d7f83e0e1ed2.zip |
drm/log: select CONFIG_FONT_SUPPORT
Without fonts, this fails to link:
drivers/gpu/drm/clients/drm_log.o: in function `drm_log_init_client':
drm_log.c:(.text+0x3d4): undefined reference to `get_default_font'
Select this, like the other users do.
Fixes: f7b42442c4ac ("drm/log: Introduce a new boot logger to draw the kmsg on the screen")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Jocelyn Falempe <jfalempe@redhat.com>
Signed-off-by: Jocelyn Falempe <jfalempe@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20241212154003.1313437-1-arnd@kernel.org
Diffstat (limited to 'lib')
-rw-r--r-- | lib/fonts/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/fonts/Kconfig b/lib/fonts/Kconfig index 3ac26bdbc3ff..ae59b5b4e225 100644 --- a/lib/fonts/Kconfig +++ b/lib/fonts/Kconfig @@ -10,7 +10,7 @@ if FONT_SUPPORT config FONTS bool "Select compiled-in fonts" - depends on FRAMEBUFFER_CONSOLE || STI_CONSOLE || DRM_PANIC + depends on FRAMEBUFFER_CONSOLE || STI_CONSOLE || DRM_PANIC || DRM_CLIENT_LOG help Say Y here if you would like to use fonts other than the default your frame buffer console usually use. |