Followup-For: Bug #1076456
Control: found -1 2.6-4
That is an incorrect constraint:
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,12,0) || LINUX_VERSION_CODE >=
KERNEL_VERSION(5,10,220)
you probably want
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,12,0)) || \
((LINUX_VERSION_CODE >= KERNEL_VERSION(5,10,220)) &&
(LINUX_VERSION_CODE < KERNEL_VERSION(5,11,0))
This bug also affects the version in bookworm, because on distupgrades
from bullseye to bookworm kernels+headers from both releases will be installed
Andreas