clk: uniphier: rename MIO clock to SD clock for Pro5, PXs2, LD20 SoCs
I made a mistake as for naming for this block. The MIO block is not implemented for these 3 SoCs in the first place. The current naming will be a trouble if an SoC with both MIO and SD-ctrl blocks appear in the future. This driver has just been merged in the previous merge window. Rename it before the release. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
This commit is contained in:

zatwierdzone przez
Stephen Boyd

rodzic
7d36b9c102
commit
5c6201e60a
@@ -142,7 +142,7 @@ static const struct of_device_id uniphier_clk_match[] = {
|
||||
.compatible = "socionext,uniphier-ld20-clock",
|
||||
.data = uniphier_ld20_sys_clk_data,
|
||||
},
|
||||
/* Media I/O clock */
|
||||
/* Media I/O clock, SD clock */
|
||||
{
|
||||
.compatible = "socionext,uniphier-sld3-mio-clock",
|
||||
.data = uniphier_sld3_mio_clk_data,
|
||||
@@ -160,20 +160,20 @@ static const struct of_device_id uniphier_clk_match[] = {
|
||||
.data = uniphier_sld3_mio_clk_data,
|
||||
},
|
||||
{
|
||||
.compatible = "socionext,uniphier-pro5-mio-clock",
|
||||
.data = uniphier_pro5_mio_clk_data,
|
||||
.compatible = "socionext,uniphier-pro5-sd-clock",
|
||||
.data = uniphier_pro5_sd_clk_data,
|
||||
},
|
||||
{
|
||||
.compatible = "socionext,uniphier-pxs2-mio-clock",
|
||||
.data = uniphier_pro5_mio_clk_data,
|
||||
.compatible = "socionext,uniphier-pxs2-sd-clock",
|
||||
.data = uniphier_pro5_sd_clk_data,
|
||||
},
|
||||
{
|
||||
.compatible = "socionext,uniphier-ld11-mio-clock",
|
||||
.data = uniphier_sld3_mio_clk_data,
|
||||
},
|
||||
{
|
||||
.compatible = "socionext,uniphier-ld20-mio-clock",
|
||||
.data = uniphier_pro5_mio_clk_data,
|
||||
.compatible = "socionext,uniphier-ld20-sd-clock",
|
||||
.data = uniphier_pro5_sd_clk_data,
|
||||
},
|
||||
/* Peripheral clock */
|
||||
{
|
||||
|
@@ -93,7 +93,7 @@ const struct uniphier_clk_data uniphier_sld3_mio_clk_data[] = {
|
||||
{ /* sentinel */ }
|
||||
};
|
||||
|
||||
const struct uniphier_clk_data uniphier_pro5_mio_clk_data[] = {
|
||||
const struct uniphier_clk_data uniphier_pro5_sd_clk_data[] = {
|
||||
UNIPHIER_MIO_CLK_SD_FIXED,
|
||||
UNIPHIER_MIO_CLK_SD(0, 0),
|
||||
UNIPHIER_MIO_CLK_SD(1, 1),
|
||||
|
@@ -115,7 +115,7 @@ extern const struct uniphier_clk_data uniphier_pxs2_sys_clk_data[];
|
||||
extern const struct uniphier_clk_data uniphier_ld11_sys_clk_data[];
|
||||
extern const struct uniphier_clk_data uniphier_ld20_sys_clk_data[];
|
||||
extern const struct uniphier_clk_data uniphier_sld3_mio_clk_data[];
|
||||
extern const struct uniphier_clk_data uniphier_pro5_mio_clk_data[];
|
||||
extern const struct uniphier_clk_data uniphier_pro5_sd_clk_data[];
|
||||
extern const struct uniphier_clk_data uniphier_ld4_peri_clk_data[];
|
||||
extern const struct uniphier_clk_data uniphier_pro4_peri_clk_data[];
|
||||
|
||||
|
Reference in New Issue
Block a user