diff options
author | Neil Armstrong <narmstrong@baylibre.com> | 2018-11-08 17:17:41 +0100 |
---|---|---|
committer | Neil Armstrong <narmstrong@baylibre.com> | 2018-11-26 14:40:52 +0100 |
commit | 19987c3908b88b48f59013a90917cd2ab6802626 (patch) | |
tree | cd49b970ee6363e1ba5a62c8b3156909837e7255 /drivers | |
parent | 8587839f19db078e5ba304a6e635e1900efc8e06 (diff) | |
download | u-boot-19987c3908b88b48f59013a90917cd2ab6802626.tar.gz |
clk: meson: add static to meson_gates table
The meson_gates table should be set static in the clk_meson driver.
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/clk/clk_meson.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/clk_meson.c b/drivers/clk/clk_meson.c index c44858822d..a096a3582c 100644 --- a/drivers/clk/clk_meson.c +++ b/drivers/clk/clk_meson.c @@ -79,7 +79,7 @@ static ulong meson_clk_set_rate_by_id(struct clk *clk, unsigned long id, static ulong meson_mux_get_parent(struct clk *clk, unsigned long id); static ulong meson_clk_get_rate_by_id(struct clk *clk, unsigned long id); -struct meson_gate gates[] = { +static struct meson_gate gates[] = { /* Everything Else (EE) domain gates */ MESON_GATE(CLKID_DDR, HHI_GCLK_MPEG0, 0), MESON_GATE(CLKID_DOS, HHI_GCLK_MPEG0, 1), |