In the Linux kernel, the following vulnerability has been resolved:
ep93xx: clock: Fix off by one in ep93xxdivrecalc_rate()
The psc->div[] array has psc->numdiv elements. These values come from when we call clkhwregisterdiv(). It's adcdivisors and ARRAYSIZE(adc_divisors)) and so on. So this condition needs to be >= instead of > to prevent an out of bounds read.