From: Thomas Zimmermann <tzimmermann@suse.de>
To: deller@gmx.de, daniel@ffwll.ch, javierm@redhat.com,
sam@ravnborg.org, linux-fbdev@vger.kernel.org,
dri-devel@lists.freedesktop.org
Cc: linux-kernel@vger.kernel.org, Thomas Zimmermann <tzimmermann@suse.de>
Subject: [PATCH v2 0/7] fbdev: Split off code for boot-up logo
Date: Thu, 7 Sep 2023 10:51:59 +0200 [thread overview]
Message-ID: <20230907085408.9354-1-tzimmermann@suse.de> (raw)
The boot-up logo is a feature of the fbcon console; with only a few
external callers. Move it from the core fbdev code into its own file.
Patches 1 and 2 remove the logo setup from fbdev drivers. The logo
requires a configured output, which is provided by the framebuffer
console. Drivers should not implement their own logo.
Patches 3 to 6 move the code for the boot-up logo into its own file
and add a number of simple cleanups. It's now separate from the core
fbdev code that maintains the display framebuffers.
Patch 7 then removes a number of unecessary include statements from
fbmem.c.
v2:
* unexport helpers in a separate patch
* squash patches that set up fb_logo.c (Javier)
Thomas Zimmermann (7):
fbdev/au1200fb: Do not display boot-up logo
fbdev/mmp/mmpfb: Do not display boot-up logo
fbdev/core: Fix style of code for boot-up logo
fbdev/core: Unexport logo helpers
fbdev/core: Move logo functions into separate source file
fbdev/core: Remove empty internal helpers from fb_logo.c
fbdev/core: Clean up include statements in fbmem.c
drivers/video/fbdev/au1200fb.c | 9 -
drivers/video/fbdev/core/Makefile | 2 +
drivers/video/fbdev/core/fb_internal.h | 17 +
drivers/video/fbdev/core/fb_logo.c | 508 +++++++++++++++++++++++
drivers/video/fbdev/core/fbcon.c | 2 +
drivers/video/fbdev/core/fbmem.c | 542 +------------------------
drivers/video/fbdev/mmp/fb/mmpfb.c | 7 -
include/linux/fb.h | 5 -
8 files changed, 530 insertions(+), 562 deletions(-)
create mode 100644 drivers/video/fbdev/core/fb_logo.c
--
2.42.0
next reply other threads:[~2023-09-07 15:46 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-07 8:51 Thomas Zimmermann [this message]
2023-09-07 8:52 ` [PATCH v2 1/7] fbdev/au1200fb: Do not display boot-up logo Thomas Zimmermann
2023-09-07 8:52 ` [PATCH v2 2/7] fbdev/mmp/mmpfb: " Thomas Zimmermann
2023-09-07 8:52 ` [PATCH v2 3/7] fbdev/core: Fix style of code for " Thomas Zimmermann
2023-09-07 8:52 ` [PATCH v2 4/7] fbdev/core: Unexport logo helpers Thomas Zimmermann
2023-09-07 8:52 ` [PATCH v2 5/7] fbdev/core: Move logo functions into separate source file Thomas Zimmermann
2023-09-07 8:52 ` [PATCH v2 6/7] fbdev/core: Remove empty internal helpers from fb_logo.c Thomas Zimmermann
2023-09-07 8:52 ` [PATCH v2 7/7] fbdev/core: Clean up include statements in fbmem.c Thomas Zimmermann
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230907085408.9354-1-tzimmermann@suse.de \
--to=tzimmermann@suse.de \
--cc=daniel@ffwll.ch \
--cc=deller@gmx.de \
--cc=dri-devel@lists.freedesktop.org \
--cc=javierm@redhat.com \
--cc=linux-fbdev@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=sam@ravnborg.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).