diff options
| author | Jonathan Neuschäfer <[email protected]> | 2022-02-18 00:09:17 +0000 |
|---|---|---|
| committer | Stephen Boyd <[email protected]> | 2022-03-12 02:13:24 +0000 |
| commit | d8a441e53e2434b1401e52dfd66b05263e442edc (patch) | |
| tree | 8dc17d5d35b7c20e5a40fbcc083d8227f0013bf0 | |
| parent | Linux 5.17-rc1 (diff) | |
| download | kernel-d8a441e53e2434b1401e52dfd66b05263e442edc.tar.gz kernel-d8a441e53e2434b1401e52dfd66b05263e442edc.zip | |
clk: actions: Terminate clk_div_table with sentinel element
In order that the end of a clk_div_table can be detected, it must be
terminated with a sentinel element (.div = 0).
In owl-s900.s, the { 0, 8 } element was probably meant to be just that,
so this patch changes { 0, 8 } to { 0, 0 }.
Fixes: d47317ca4ade1 ("clk: actions: Add S700 SoC clock support")
Fixes: d85d20053e195 ("clk: actions: Add S900 SoC clock support")
Signed-off-by: Jonathan Neuschäfer <[email protected]>
Reviewed-by: Manivannan Sadhasivam <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Stephen Boyd <[email protected]>
| -rw-r--r-- | drivers/clk/actions/owl-s700.c | 1 | ||||
| -rw-r--r-- | drivers/clk/actions/owl-s900.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/drivers/clk/actions/owl-s700.c b/drivers/clk/actions/owl-s700.c index a2f34d13fb54..6ea7da1d6d75 100644 --- a/drivers/clk/actions/owl-s700.c +++ b/drivers/clk/actions/owl-s700.c @@ -162,6 +162,7 @@ static struct clk_div_table hdmia_div_table[] = { static struct clk_div_table rmii_div_table[] = { {0, 4}, {1, 10}, + {0, 0} }; /* divider clocks */ diff --git a/drivers/clk/actions/owl-s900.c b/drivers/clk/actions/owl-s900.c index 790890978424..5144ada2c7e1 100644 --- a/drivers/clk/actions/owl-s900.c +++ b/drivers/clk/actions/owl-s900.c @@ -140,7 +140,7 @@ static struct clk_div_table rmii_ref_div_table[] = { static struct clk_div_table usb3_mac_div_table[] = { { 1, 2 }, { 2, 3 }, { 3, 4 }, - { 0, 8 }, + { 0, 0 } }; static struct clk_div_table i2s_div_table[] = { |
