clk: meson: fix CLKID_GCLK_VENCI_INT typo
authorArnd Bergmann <arnd@arndb.de>
Tue, 6 Sep 2016 13:01:10 +0000 (15:01 +0200)
committerStephen Boyd <sboyd@codeaurora.org>
Wed, 14 Sep 2016 18:17:15 +0000 (11:17 -0700)
commit0d5aa65e329e7f0b753686e116c99e2d7263bced
tree1b35649b1ada90ea9632f2f8a60c86082cbffa71
parent344dcc02b0578bb3f2523aaa54d7f33730c7f5af
clk: meson: fix CLKID_GCLK_VENCI_INT typo

The addition of many gate clocks added two entries in an array for
the same value:

drivers/clk/meson/meson8b.c:479:10: error: initialized field overwritten [-Werror=override-init]
   [CLKID_GCLK_VENCI_INT]     = &meson8b_gclk_venci_int.hw,
   [CLKID_GCLK_VENCI_INT]     = &meson8b_gclk_vencp_int.hw,

This was clearly an accident, and since all other identifiers are
listed in the order in which they are defined, I'm changing the
first one to CLKID_GCLK_VENCI_INT0, making it all consistent again.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Fixes: e31a1900c1ff ("meson: clk: Add support for clock gates")
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
drivers/clk/meson/meson8b.c