All of lore.kernel.org
 help / color / mirror / Atom feed
From: Thomas Zimmermann <tzimmermann@suse.de>
To: deller@gmx.de, javierm@redhat.com, sam@ravnborg.org,
	arnd@arndb.de, daniel@ffwll.ch
Cc: linux-fbdev@vger.kernel.org, dri-devel@lists.freedesktop.org,
	linux-arm-kernel@lists.infradead.org,
	linux-nvidia@lists.surfsouth.com, linux-omap@vger.kernel.org,
	linux-parisc@vger.kernel.org,
	Thomas Zimmermann <tzimmermann@suse.de>
Subject: [PATCH 01/46] fbdev: Provide I/O-memory helpers as module
Date: Wed, 27 Sep 2023 09:26:34 +0200	[thread overview]
Message-ID: <20230927074722.6197-2-tzimmermann@suse.de> (raw)
In-Reply-To: <20230927074722.6197-1-tzimmermann@suse.de>

Provide helpers for accessing I/O memory in a helper module. The fbdev
core uses these helpers, so select the module unconditionally for fbdev.
Drivers will later be able to select the module individually and the
helpers will become optional.

Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
---
 drivers/video/fbdev/core/Kconfig      | 6 ++++++
 drivers/video/fbdev/core/Makefile     | 3 ++-
 drivers/video/fbdev/core/fb_io_fops.c | 3 +++
 3 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/drivers/video/fbdev/core/Kconfig b/drivers/video/fbdev/core/Kconfig
index 756c8603cf39b..7a3ed13bed708 100644
--- a/drivers/video/fbdev/core/Kconfig
+++ b/drivers/video/fbdev/core/Kconfig
@@ -4,6 +4,7 @@
 #
 
 config FB_CORE
+	select FB_IOMEM_FOPS
 	select VIDEO_CMDLINE
 	tristate
 
@@ -144,12 +145,17 @@ config FB_DMAMEM_HELPERS
 	select FB_SYS_FOPS
 	select FB_SYS_IMAGEBLIT
 
+config FB_IOMEM_FOPS
+	tristate
+	depends on FB_CORE
+
 config FB_IOMEM_HELPERS
 	bool
 	depends on FB_CORE
 	select FB_CFB_COPYAREA
 	select FB_CFB_FILLRECT
 	select FB_CFB_IMAGEBLIT
+	select FB_IOMEM_FOPS
 
 config FB_IOMEM_HELPERS_DEFERRED
 	bool
diff --git a/drivers/video/fbdev/core/Makefile b/drivers/video/fbdev/core/Makefile
index 36d3156dc759c..c1d657601b2be 100644
--- a/drivers/video/fbdev/core/Makefile
+++ b/drivers/video/fbdev/core/Makefile
@@ -3,7 +3,7 @@ obj-$(CONFIG_FB_NOTIFY)           += fb_notify.o
 obj-$(CONFIG_FB_CORE)             += fb.o
 fb-y                              := fb_info.o \
                                      fbmem.o fbcmap.o \
-                                     modedb.o fbcvt.o fb_cmdline.o fb_io_fops.o
+                                     modedb.o fbcvt.o fb_cmdline.o
 ifdef CONFIG_FB
 fb-y                              += fb_backlight.o fbmon.o
 endif
@@ -28,6 +28,7 @@ fb-$(CONFIG_LOGO)		  += fb_logo.o
 obj-$(CONFIG_FB_CFB_FILLRECT)  += cfbfillrect.o
 obj-$(CONFIG_FB_CFB_COPYAREA)  += cfbcopyarea.o
 obj-$(CONFIG_FB_CFB_IMAGEBLIT) += cfbimgblt.o
+obj-$(CONFIG_FB_IOMEM_FOPS)    += fb_io_fops.o
 obj-$(CONFIG_FB_SYS_FILLRECT)  += sysfillrect.o
 obj-$(CONFIG_FB_SYS_COPYAREA)  += syscopyarea.o
 obj-$(CONFIG_FB_SYS_IMAGEBLIT) += sysimgblt.o
diff --git a/drivers/video/fbdev/core/fb_io_fops.c b/drivers/video/fbdev/core/fb_io_fops.c
index 5985e5e1b040c..871b829521af3 100644
--- a/drivers/video/fbdev/core/fb_io_fops.c
+++ b/drivers/video/fbdev/core/fb_io_fops.c
@@ -131,3 +131,6 @@ ssize_t fb_io_write(struct fb_info *info, const char __user *buf, size_t count,
 	return (cnt) ? cnt : err;
 }
 EXPORT_SYMBOL(fb_io_write);
+
+MODULE_DESCRIPTION("Fbdev helpers for framebuffers in I/O memory");
+MODULE_LICENSE("GPL");
-- 
2.42.0


WARNING: multiple messages have this Message-ID (diff)
From: Thomas Zimmermann <tzimmermann@suse.de>
To: deller@gmx.de, javierm@redhat.com, sam@ravnborg.org,
	arnd@arndb.de, daniel@ffwll.ch
Cc: linux-fbdev@vger.kernel.org, linux-parisc@vger.kernel.org,
	dri-devel@lists.freedesktop.org,
	Thomas Zimmermann <tzimmermann@suse.de>,
	linux-nvidia@lists.surfsouth.com, linux-omap@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org
Subject: [PATCH 01/46] fbdev: Provide I/O-memory helpers as module
Date: Wed, 27 Sep 2023 09:26:34 +0200	[thread overview]
Message-ID: <20230927074722.6197-2-tzimmermann@suse.de> (raw)
In-Reply-To: <20230927074722.6197-1-tzimmermann@suse.de>

Provide helpers for accessing I/O memory in a helper module. The fbdev
core uses these helpers, so select the module unconditionally for fbdev.
Drivers will later be able to select the module individually and the
helpers will become optional.

Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
---
 drivers/video/fbdev/core/Kconfig      | 6 ++++++
 drivers/video/fbdev/core/Makefile     | 3 ++-
 drivers/video/fbdev/core/fb_io_fops.c | 3 +++
 3 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/drivers/video/fbdev/core/Kconfig b/drivers/video/fbdev/core/Kconfig
index 756c8603cf39b..7a3ed13bed708 100644
--- a/drivers/video/fbdev/core/Kconfig
+++ b/drivers/video/fbdev/core/Kconfig
@@ -4,6 +4,7 @@
 #
 
 config FB_CORE
+	select FB_IOMEM_FOPS
 	select VIDEO_CMDLINE
 	tristate
 
@@ -144,12 +145,17 @@ config FB_DMAMEM_HELPERS
 	select FB_SYS_FOPS
 	select FB_SYS_IMAGEBLIT
 
+config FB_IOMEM_FOPS
+	tristate
+	depends on FB_CORE
+
 config FB_IOMEM_HELPERS
 	bool
 	depends on FB_CORE
 	select FB_CFB_COPYAREA
 	select FB_CFB_FILLRECT
 	select FB_CFB_IMAGEBLIT
+	select FB_IOMEM_FOPS
 
 config FB_IOMEM_HELPERS_DEFERRED
 	bool
diff --git a/drivers/video/fbdev/core/Makefile b/drivers/video/fbdev/core/Makefile
index 36d3156dc759c..c1d657601b2be 100644
--- a/drivers/video/fbdev/core/Makefile
+++ b/drivers/video/fbdev/core/Makefile
@@ -3,7 +3,7 @@ obj-$(CONFIG_FB_NOTIFY)           += fb_notify.o
 obj-$(CONFIG_FB_CORE)             += fb.o
 fb-y                              := fb_info.o \
                                      fbmem.o fbcmap.o \
-                                     modedb.o fbcvt.o fb_cmdline.o fb_io_fops.o
+                                     modedb.o fbcvt.o fb_cmdline.o
 ifdef CONFIG_FB
 fb-y                              += fb_backlight.o fbmon.o
 endif
@@ -28,6 +28,7 @@ fb-$(CONFIG_LOGO)		  += fb_logo.o
 obj-$(CONFIG_FB_CFB_FILLRECT)  += cfbfillrect.o
 obj-$(CONFIG_FB_CFB_COPYAREA)  += cfbcopyarea.o
 obj-$(CONFIG_FB_CFB_IMAGEBLIT) += cfbimgblt.o
+obj-$(CONFIG_FB_IOMEM_FOPS)    += fb_io_fops.o
 obj-$(CONFIG_FB_SYS_FILLRECT)  += sysfillrect.o
 obj-$(CONFIG_FB_SYS_COPYAREA)  += syscopyarea.o
 obj-$(CONFIG_FB_SYS_IMAGEBLIT) += sysimgblt.o
diff --git a/drivers/video/fbdev/core/fb_io_fops.c b/drivers/video/fbdev/core/fb_io_fops.c
index 5985e5e1b040c..871b829521af3 100644
--- a/drivers/video/fbdev/core/fb_io_fops.c
+++ b/drivers/video/fbdev/core/fb_io_fops.c
@@ -131,3 +131,6 @@ ssize_t fb_io_write(struct fb_info *info, const char __user *buf, size_t count,
 	return (cnt) ? cnt : err;
 }
 EXPORT_SYMBOL(fb_io_write);
+
+MODULE_DESCRIPTION("Fbdev helpers for framebuffers in I/O memory");
+MODULE_LICENSE("GPL");
-- 
2.42.0


WARNING: multiple messages have this Message-ID (diff)
From: Thomas Zimmermann <tzimmermann@suse.de>
To: deller@gmx.de, javierm@redhat.com, sam@ravnborg.org,
	arnd@arndb.de, daniel@ffwll.ch
Cc: linux-fbdev@vger.kernel.org, dri-devel@lists.freedesktop.org,
	linux-arm-kernel@lists.infradead.org,
	linux-nvidia@lists.surfsouth.com, linux-omap@vger.kernel.org,
	linux-parisc@vger.kernel.org,
	Thomas Zimmermann <tzimmermann@suse.de>
Subject: [PATCH 01/46] fbdev: Provide I/O-memory helpers as module
Date: Wed, 27 Sep 2023 09:26:34 +0200	[thread overview]
Message-ID: <20230927074722.6197-2-tzimmermann@suse.de> (raw)
In-Reply-To: <20230927074722.6197-1-tzimmermann@suse.de>

Provide helpers for accessing I/O memory in a helper module. The fbdev
core uses these helpers, so select the module unconditionally for fbdev.
Drivers will later be able to select the module individually and the
helpers will become optional.

Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
---
 drivers/video/fbdev/core/Kconfig      | 6 ++++++
 drivers/video/fbdev/core/Makefile     | 3 ++-
 drivers/video/fbdev/core/fb_io_fops.c | 3 +++
 3 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/drivers/video/fbdev/core/Kconfig b/drivers/video/fbdev/core/Kconfig
index 756c8603cf39b..7a3ed13bed708 100644
--- a/drivers/video/fbdev/core/Kconfig
+++ b/drivers/video/fbdev/core/Kconfig
@@ -4,6 +4,7 @@
 #
 
 config FB_CORE
+	select FB_IOMEM_FOPS
 	select VIDEO_CMDLINE
 	tristate
 
@@ -144,12 +145,17 @@ config FB_DMAMEM_HELPERS
 	select FB_SYS_FOPS
 	select FB_SYS_IMAGEBLIT
 
+config FB_IOMEM_FOPS
+	tristate
+	depends on FB_CORE
+
 config FB_IOMEM_HELPERS
 	bool
 	depends on FB_CORE
 	select FB_CFB_COPYAREA
 	select FB_CFB_FILLRECT
 	select FB_CFB_IMAGEBLIT
+	select FB_IOMEM_FOPS
 
 config FB_IOMEM_HELPERS_DEFERRED
 	bool
diff --git a/drivers/video/fbdev/core/Makefile b/drivers/video/fbdev/core/Makefile
index 36d3156dc759c..c1d657601b2be 100644
--- a/drivers/video/fbdev/core/Makefile
+++ b/drivers/video/fbdev/core/Makefile
@@ -3,7 +3,7 @@ obj-$(CONFIG_FB_NOTIFY)           += fb_notify.o
 obj-$(CONFIG_FB_CORE)             += fb.o
 fb-y                              := fb_info.o \
                                      fbmem.o fbcmap.o \
-                                     modedb.o fbcvt.o fb_cmdline.o fb_io_fops.o
+                                     modedb.o fbcvt.o fb_cmdline.o
 ifdef CONFIG_FB
 fb-y                              += fb_backlight.o fbmon.o
 endif
@@ -28,6 +28,7 @@ fb-$(CONFIG_LOGO)		  += fb_logo.o
 obj-$(CONFIG_FB_CFB_FILLRECT)  += cfbfillrect.o
 obj-$(CONFIG_FB_CFB_COPYAREA)  += cfbcopyarea.o
 obj-$(CONFIG_FB_CFB_IMAGEBLIT) += cfbimgblt.o
+obj-$(CONFIG_FB_IOMEM_FOPS)    += fb_io_fops.o
 obj-$(CONFIG_FB_SYS_FILLRECT)  += sysfillrect.o
 obj-$(CONFIG_FB_SYS_COPYAREA)  += syscopyarea.o
 obj-$(CONFIG_FB_SYS_IMAGEBLIT) += sysimgblt.o
diff --git a/drivers/video/fbdev/core/fb_io_fops.c b/drivers/video/fbdev/core/fb_io_fops.c
index 5985e5e1b040c..871b829521af3 100644
--- a/drivers/video/fbdev/core/fb_io_fops.c
+++ b/drivers/video/fbdev/core/fb_io_fops.c
@@ -131,3 +131,6 @@ ssize_t fb_io_write(struct fb_info *info, const char __user *buf, size_t count,
 	return (cnt) ? cnt : err;
 }
 EXPORT_SYMBOL(fb_io_write);
+
+MODULE_DESCRIPTION("Fbdev helpers for framebuffers in I/O memory");
+MODULE_LICENSE("GPL");
-- 
2.42.0


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  reply	other threads:[~2023-09-27  7:47 UTC|newest]

Thread overview: 147+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-27  7:26 [PATCH 00/46] fbdev: Init fb_ops with helpers for I/O memory Thomas Zimmermann
2023-09-27  7:26 ` Thomas Zimmermann
2023-09-27  7:26 ` Thomas Zimmermann
2023-09-27  7:26 ` Thomas Zimmermann [this message]
2023-09-27  7:26   ` [PATCH 01/46] fbdev: Provide I/O-memory helpers as module Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-10-18  8:16   ` Javier Martinez Canillas
2023-10-18  8:16     ` Javier Martinez Canillas
2023-10-18  8:16     ` Javier Martinez Canillas
2023-09-27  7:26 ` [PATCH 02/46] fbdev/68328fb: Initialize fb_ops to fbdev I/O-memory helpers Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26 ` [PATCH 03/46] fbdev/amba-clcd: " Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26 ` [PATCH 04/46] fbdev/amifb: " Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26 ` [PATCH 05/46] fbdev/arkfb: " Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26 ` [PATCH 06/46] fbdev/atafb: " Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26 ` [PATCH 07/46] fbdev/atyfb: " Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26 ` [PATCH 08/46] fbdev/au1100fb: " Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26 ` [PATCH 09/46] fbdev/cirrusfb: " Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26 ` [PATCH 10/46] fbdev/cobalt-lcd: " Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26 ` [PATCH 11/46] fbdev/controlfb: " Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26 ` [PATCH 12/46] fbdev/cyber2000fb: " Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26 ` [PATCH 13/46] fbdev/dnfb: " Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26 ` [PATCH 14/46] fbdev/ep93xx-fb: " Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26 ` [PATCH 15/46] fbdev/gbefb: " Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26 ` [PATCH 16/46] fbdev/hgafb: " Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26 ` [PATCH 17/46] fbdev/hitfb: " Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26 ` [PATCH 18/46] fbdev/hpfb: " Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26 ` [PATCH 19/46] fbdev/i810fb: " Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26 ` [PATCH 20/46] fbdev/imsttfb: " Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26 ` [PATCH 21/46] fbdev/intelfb: " Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26 ` [PATCH 22/46] fbdev/matroxfb: " Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26 ` [PATCH 23/46] fbdev/neofb: " Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26 ` [PATCH 24/46] fbdev/nvidiafb: " Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26 ` [PATCH 25/46] fbdev/omapfb: " Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26 ` [PATCH 26/46] fbdev/pm2fb: " Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:26   ` Thomas Zimmermann
2023-09-27  7:27 ` [PATCH 27/46] fbdev/pm3fb: " Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27 ` [PATCH 28/46] fbdev/pvr2fb: " Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27 ` [PATCH 29/46] fbdev/radeon: " Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27 ` [PATCH 30/46] fbdev/rivafb: " Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27 ` [PATCH 31/46] fbdev/s1d13xxxfb: " Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27 ` [PATCH 32/46] fbdev/s3fb: " Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27 ` [PATCH 33/46] fbdev/sa1100fb: " Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27 ` [PATCH 34/46] fbdev/savagefb: " Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27 ` [PATCH 35/46] fbdev/sisfb: " Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27 ` [PATCH 36/46] fbdev/sm501fb: " Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27 ` [PATCH 37/46] fbdev/sm712fb: " Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27 ` [PATCH 38/46] fbdev/stifb: " Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27 ` [PATCH 39/46] fbdev/sunxvr500: " Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27 ` [PATCH 40/46] fbdev/tdfxfb: " Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27 ` [PATCH 41/46] fbdev/tgafb: " Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27 ` [PATCH 42/46] fbdev/tridentfb: " Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27 ` [PATCH 43/46] fbdev/vermilionfb: " Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27 ` [PATCH 44/46] fbdev/vga16fb: " Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27 ` [PATCH 45/46] fbdev/viafb: " Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27 ` [PATCH 46/46] fbdev/vt8623fb: " Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-09-27  7:27   ` Thomas Zimmermann
2023-10-18  8:25 ` [PATCH 00/46] fbdev: Init fb_ops with helpers for I/O memory Javier Martinez Canillas
2023-10-18  8:25   ` Javier Martinez Canillas
2023-10-18  8:25   ` Javier Martinez Canillas

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=20230927074722.6197-2-tzimmermann@suse.de \
    --to=tzimmermann@suse.de \
    --cc=arnd@arndb.de \
    --cc=daniel@ffwll.ch \
    --cc=deller@gmx.de \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=javierm@redhat.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-fbdev@vger.kernel.org \
    --cc=linux-nvidia@lists.surfsouth.com \
    --cc=linux-omap@vger.kernel.org \
    --cc=linux-parisc@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.