Re: [PATCH] fbcon: Increase maximum font width x height to 64 x 64

2024-03-15 Thread Samuel Thibault
Hello, Helge Deller, le ven. 15 mars 2024 10:35:40 +0100, a ecrit: > You should have marked this patch with "v2"... The actual changes were exactly the same. > On 3/13/24 17:59, Samuel Thibault wrote: > > This remains relatively simple by just enlarging integers. > > I like the patch, but I sti

Re: [PATCH] fbcon: Increase maximum font width x height to 64 x 64

2024-03-15 Thread Helge Deller
You should have marked this patch with "v2"... On 3/13/24 17:59, Samuel Thibault wrote: This remains relatively simple by just enlarging integers. I like the patch, but I still see some u32... drivers/video/fbdev/vt8623fb.c: info->pixmap.blit_x = (bpp == 4) ? (1 << (8 - 1)) : (~(u32)0

Re: [PATCH] fbcon: Increase maximum font width x height to 64 x 64

2024-03-13 Thread Samuel Thibault
Luca Ceresoli, le mer. 13 mars 2024 17:45:31 +0100, a ecrit: > This patch is clearly not formatted according to the standard format > and it does not apply with 'git am'. (Note: the failure of application was not related to the formatting at all, but just a little fuzz for the static word in stat

[PATCH] fbcon: Increase maximum font width x height to 64 x 64

2024-03-13 Thread Samuel Thibault
This remains relatively simple by just enlarging integers. It wouldn't be that simple to get to the console's 64x128 maximum, as it would require 128b integers. Signed-off-by: Samuel Thibault --- drivers/video/fbdev/core/fbcon.c | 17 ++--- include/linux/fb.h | 10

Re: [PATCH] fbcon: Increase maximum font width x height to 64 x 64

2024-03-13 Thread Samuel Thibault
Luca Ceresoli, le mer. 13 mars 2024 17:45:31 +0100, a ecrit: > Using 'git format-patch' and 'git send-email' is *very* recommended as > it will take care of all the formatting for you. It's quite a pitty that git cannot simply consume the output of diff. Now I'll have to download 8GB of linux tre

Re: [PATCH] fbcon: Increase maximum font width x height to 64 x 64

2024-03-13 Thread Luca Ceresoli
Hello Samuel, On Tue, 12 Mar 2024 22:39:02 +0100 Samuel Thibault wrote: > This remains relatively simple by just enlarging integers. > > It wouldn't be that simple to get to the console's 64x128 maximum, as it would > require 128b integers. > > Signed-off-by: Samuel Thibault > > Index: linux

[PATCH] fbcon: Increase maximum font width x height to 64 x 64

2024-03-12 Thread Samuel Thibault
This remains relatively simple by just enlarging integers. It wouldn't be that simple to get to the console's 64x128 maximum, as it would require 128b integers. Signed-off-by: Samuel Thibault Index: linux-6.4/drivers/video/fbdev/core/fbcon.c =