Quantcast
Viewing all articles
Browse latest Browse all 4860

Advanced users • Re: Moving Linux Kernel to 6.12

think I've found it:

Code:

drivers/input/touchscreen/hynitron_cstxxx.c:28:10: fatal error: asm/unaligned.h: No such file or directory   28 | #include <asm/unaligned.h>      |          ^~~~~~~~~~~~~~~~~
had to change that to '#include <linux/unaligned.h>' in my version of the driver (WIP)
Erm, it is "#include <linux/unaligned.h> in rpi-6.12.y
https://github.com/raspberrypi/linux/bl ... txxx.c#L25
https://github.com/raspberrypi/linux/co ... 2698f3b576

I'd have a close look at what is going on with your tree.
I know, but I've missed to change that because I'm currently working on two DUT's: one running 6.6.x kernel the other one on 6.12.x
-->

Code:

//#include <asm/unaligned.h>/* for linux 6.12.x that needs to be changed to */#include <linux/unaligned.h>
As the in-tree driver does not work with my touch controller (starts that all register definition are non-generic) I have myWIP version from 6.6.64 and simply copied it over to 6.12.4.
In-tree driver is targeting cst340 while my display is based on cst328.

As I currently see an issue with a ghosting mouse curser artifact I wanted to check if that's related to kernel but it isn't. Also not 100% sure if it's related to SPI displays only.
Happens when using mouse only as well on both kernel versions.

Statistics: Posted by aBUGSworstnightmare — Wed Dec 11, 2024 1:56 pm



Viewing all articles
Browse latest Browse all 4860

Trending Articles