diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2013-05-16 17:55:20 +0200 |
---|---|---|
committer | Jason Cooper <jason@lakedaemon.net> | 2013-05-20 19:18:43 +0000 |
commit | fb6638ba43931feb00361f7184587a97b57d336b (patch) | |
tree | 4a810b66d455eaf4863b39f832a88d023fd77bd6 /drivers/clk/mvebu | |
parent | 4e23d3f505e8acfeac7cc33d4113fbb5a25c3090 (diff) | |
download | linux-fb6638ba43931feb00361f7184587a97b57d336b.tar.gz linux-fb6638ba43931feb00361f7184587a97b57d336b.tar.bz2 linux-fb6638ba43931feb00361f7184587a97b57d336b.zip |
clk: mvebu: create parent-child relation for PCIe clocks on Armada 370
The Armada 370 has two gatable clocks for each PCIe interface, and we
want both of them to be enabled. We therefore make one of the two
clocks a child of the other, as we did for the sataX and sataXlnk
clocks on Armada XP.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Cc: Mike Turquette <mturquette@linaro.org>
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Diffstat (limited to 'drivers/clk/mvebu')
-rw-r--r-- | drivers/clk/mvebu/clk-gating-ctrl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clk/mvebu/clk-gating-ctrl.c b/drivers/clk/mvebu/clk-gating-ctrl.c index ebf141d4374b..b35785ae3e2e 100644 --- a/drivers/clk/mvebu/clk-gating-ctrl.c +++ b/drivers/clk/mvebu/clk-gating-ctrl.c @@ -119,8 +119,8 @@ static const struct mvebu_soc_descr __initconst armada_370_gating_descr[] = { { "pex1_en", NULL, 2 }, { "ge1", NULL, 3 }, { "ge0", NULL, 4 }, - { "pex0", NULL, 5 }, - { "pex1", NULL, 9 }, + { "pex0", "pex0_en", 5 }, + { "pex1", "pex1_en", 9 }, { "sata0", NULL, 15 }, { "sdio", NULL, 17 }, { "tdm", NULL, 25 }, |