diff options
| author | Martin Blumenstingl <martin.blumenstingl@googlemail.com> | 2026-01-05 23:47:10 +0300 |
|---|---|---|
| committer | Jerome Brunet <jbrunet@baylibre.com> | 2026-01-06 11:52:21 +0300 |
| commit | 2fe1ef40b58c2256f4682594f48bfbd584501ec5 (patch) | |
| tree | 0c862d7c0d8aab6cdd105306575a1b8803f7ace0 | |
| parent | 7aa6c24697ef5db1402dd38743914493cd5b356d (diff) | |
| download | linux-2fe1ef40b58c2256f4682594f48bfbd584501ec5.tar.xz | |
clk: meson: gxbb: use the existing HHI_HDMI_PLL_CNTL3 macro
There's no need to calculate HHI_HDMI_PLL_CNTL + 8 when we have a
HHI_HDMI_PLL_CNTL3 macro that has the correct offset already. No
functional changes, this makes it easier to compare the driver with the
datasheets.
Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Link: https://lore.kernel.org/r/20260105204710.447779-4-martin.blumenstingl@googlemail.com
Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
| -rw-r--r-- | drivers/clk/meson/gxbb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/clk/meson/gxbb.c b/drivers/clk/meson/gxbb.c index ec9a3414875a..f9131d014ef4 100644 --- a/drivers/clk/meson/gxbb.c +++ b/drivers/clk/meson/gxbb.c @@ -362,7 +362,7 @@ static const struct clk_div_table gxl_hdmi_pll_od_div_table[] = { static struct clk_regmap gxl_hdmi_pll_od = { .data = &(struct clk_regmap_div_data){ - .offset = HHI_HDMI_PLL_CNTL + 8, + .offset = HHI_HDMI_PLL_CNTL3, .shift = 21, .width = 2, .table = gxl_hdmi_pll_od_div_table, @@ -380,7 +380,7 @@ static struct clk_regmap gxl_hdmi_pll_od = { static struct clk_regmap gxl_hdmi_pll_od2 = { .data = &(struct clk_regmap_div_data){ - .offset = HHI_HDMI_PLL_CNTL + 8, + .offset = HHI_HDMI_PLL_CNTL3, .shift = 23, .width = 2, .table = gxl_hdmi_pll_od_div_table, @@ -398,7 +398,7 @@ static struct clk_regmap gxl_hdmi_pll_od2 = { static struct clk_regmap gxl_hdmi_pll = { .data = &(struct clk_regmap_div_data){ - .offset = HHI_HDMI_PLL_CNTL + 8, + .offset = HHI_HDMI_PLL_CNTL3, .shift = 19, .width = 2, .table = gxl_hdmi_pll_od_div_table, |
