rts5139 icon indicating copy to clipboard operation
rts5139 copied to clipboard

Changes for kernel versions >= 5.0.14 are now also required for 4.x branch

Open fonic opened this issue 5 years ago • 6 comments

It seems the changes introduced in kernel 5.0.14 were recently backported to the 4.x branch. I encountered compiling problems after upgrading to kernel 4.19.52. With the changes implemented by #11, the driver compiles and works fine again.

I simple changed: #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 0, 14)) to #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 0, 14)) || (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 19, 52))

fonic avatar Jun 27 '19 12:06 fonic