Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 33cb61a4 authored by Magnus Damm's avatar Magnus Damm Committed by Rafael J. Wysocki
Browse files

sh: sh4a sh_clk_ops rename



Convert sh4a SoCs to use sh_clk_ops.

Signed-off-by: default avatarMagnus Damm <damm@opensource.se>
Signed-off-by: default avatarRafael J. Wysocki <rjw@sisk.pl>
parent 3b874415
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -61,7 +61,7 @@ static unsigned long dll_recalc(struct clk *clk)
	return clk->parent->rate * mult;
}

static struct clk_ops dll_clk_ops = {
static struct sh_clk_ops dll_clk_ops = {
	.recalc		= dll_recalc,
};

@@ -81,7 +81,7 @@ static unsigned long pll_recalc(struct clk *clk)
	return clk->parent->rate * mult;
}

static struct clk_ops pll_clk_ops = {
static struct sh_clk_ops pll_clk_ops = {
	.recalc		= pll_recalc,
};

+2 −2
Original line number Diff line number Diff line
@@ -61,7 +61,7 @@ static unsigned long dll_recalc(struct clk *clk)
	return clk->parent->rate * mult;
}

static struct clk_ops dll_clk_ops = {
static struct sh_clk_ops dll_clk_ops = {
	.recalc		= dll_recalc,
};

@@ -84,7 +84,7 @@ static unsigned long pll_recalc(struct clk *clk)
	return (clk->parent->rate * mult) / div;
}

static struct clk_ops pll_clk_ops = {
static struct sh_clk_ops pll_clk_ops = {
	.recalc		= pll_recalc,
};

+2 −2
Original line number Diff line number Diff line
@@ -64,7 +64,7 @@ static unsigned long dll_recalc(struct clk *clk)
	return clk->parent->rate * mult;
}

static struct clk_ops dll_clk_ops = {
static struct sh_clk_ops dll_clk_ops = {
	.recalc		= dll_recalc,
};

@@ -87,7 +87,7 @@ static unsigned long pll_recalc(struct clk *clk)
	return (clk->parent->rate * mult) / div;
}

static struct clk_ops pll_clk_ops = {
static struct sh_clk_ops pll_clk_ops = {
	.recalc		= pll_recalc,
};

+2 −2
Original line number Diff line number Diff line
@@ -65,7 +65,7 @@ static unsigned long dll_recalc(struct clk *clk)
	return clk->parent->rate * mult;
}

static struct clk_ops dll_clk_ops = {
static struct sh_clk_ops dll_clk_ops = {
	.recalc		= dll_recalc,
};

@@ -88,7 +88,7 @@ static unsigned long pll_recalc(struct clk *clk)
	return (clk->parent->rate * mult) / div;
}

static struct clk_ops pll_clk_ops = {
static struct sh_clk_ops pll_clk_ops = {
	.recalc		= pll_recalc,
};

+3 −3
Original line number Diff line number Diff line
@@ -70,7 +70,7 @@ static unsigned long fll_recalc(struct clk *clk)
	return (clk->parent->rate * mult) / div;
}

static struct clk_ops fll_clk_ops = {
static struct sh_clk_ops fll_clk_ops = {
	.recalc		= fll_recalc,
};

@@ -90,7 +90,7 @@ static unsigned long pll_recalc(struct clk *clk)
	return clk->parent->rate * mult;
}

static struct clk_ops pll_clk_ops = {
static struct sh_clk_ops pll_clk_ops = {
	.recalc		= pll_recalc,
};

@@ -105,7 +105,7 @@ static unsigned long div3_recalc(struct clk *clk)
	return clk->parent->rate / 3;
}

static struct clk_ops div3_clk_ops = {
static struct sh_clk_ops div3_clk_ops = {
	.recalc		= div3_recalc,
};

Loading