clk: zynqmp: Off by one in zynqmp_is_valid_clock()

The > comparison should be >= to prevent reading beyond the end of the
clock[] array.

(The clock[] array is allocated in zynqmp_clk_setup() and has
clock_max_idx elements.)

Fixes: 3fde0e16d0 ("drivers: clk: Add ZynqMP clock driver")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
This commit is contained in:
Dan Carpenter 2018-12-03 17:52:01 +03:00 committed by Stephen Boyd
parent 2e85c57493
commit 9a43be9ced
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ static const struct zynqmp_eemi_ops *eemi_ops;
*/ */
static inline int zynqmp_is_valid_clock(u32 clk_id) static inline int zynqmp_is_valid_clock(u32 clk_id)
{ {
if (clk_id > clock_max_idx) if (clk_id >= clock_max_idx)
return -ENODEV; return -ENODEV;
return clock[clk_id].valid; return clock[clk_id].valid;