Re: [PATCH v4 0/6] fbdev: Move framebuffer I/O helpers to

2023-05-05 Thread Thomas Zimmermann
Hi Am 04.05.23 um 10:08 schrieb Arnd Bergmann: On Thu, May 4, 2023, at 09:45, Thomas Zimmermann wrote: Fbdev provides helpers for framebuffer I/O, such as fb_readl(), fb_writel() or fb_memcpy_to_fb(). The implementation of each helper depends on the architecture, but they are all equivalent to

Re: [PATCH v4 0/6] fbdev: Move framebuffer I/O helpers to

2023-05-04 Thread Arnd Bergmann
On Thu, May 4, 2023, at 09:45, Thomas Zimmermann wrote: > Fbdev provides helpers for framebuffer I/O, such as fb_readl(), > fb_writel() or fb_memcpy_to_fb(). The implementation of each helper > depends on the architecture, but they are all equivalent to regular > I/O functions of similar names. So

[PATCH v4 0/6] fbdev: Move framebuffer I/O helpers to

2023-05-04 Thread Thomas Zimmermann
Fbdev provides helpers for framebuffer I/O, such as fb_readl(), fb_writel() or fb_memcpy_to_fb(). The implementation of each helper depends on the architecture, but they are all equivalent to regular I/O functions of similar names. So use regular functions instead and move all helpers into The fi