clk: at91: Fix initializing arrays
authorFrancois Berder <fberder@outlook.fr>
Sun, 24 Sep 2023 09:58:54 +0000 (11:58 +0200)
committerEugen Hristev <eugen.hristev@collabora.com>
Fri, 29 Sep 2023 13:45:40 +0000 (16:45 +0300)
Arrays are not cleared entirely because ARRAY_SIZE
returns the number of elements in an array, not the size
in bytes.
This commit fixes the calls to memset by providing the
array size in bytes instead of the number of elements
in the array.

Signed-off-by: Francois Berder <fberder@outlook.fr>

No differences found