After install, patch the file /usr/src/hailort-pcie-driver/linux/vdma/monitor.c
// del_timer_sync(&monitor->timer);
timer_delete_sync(&monitor->timer);
reconfigure after the patch, and done!
A wrapper could be a better solution for the future:
#if LINUX_VERSION_CODE >= KERNEL_VERSION(6,15,0)
#define del_timer timer_delete
#define del_timer_sync timer_delete_sync
#endif