Message ID | 1455734900-1913-1-git-send-email-agust@denx.de (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Wed, Feb 17, 2016 at 4:48 PM, Anatolij Gustschin <agust@denx.de> wrote: > Don't capitalize p in the pwm7 clock name. > > Signed-off-by: Anatolij Gustschin <agust@denx.de> Thanks. Reviewed-by: Fabio Estevam <fabio.estevam@nxp.com>
Quoting Fabio Estevam (2016-02-17 10:58:13) > On Wed, Feb 17, 2016 at 4:48 PM, Anatolij Gustschin <agust@denx.de> wrote: > > Don't capitalize p in the pwm7 clock name. > > > > Signed-off-by: Anatolij Gustschin <agust@denx.de> > > Thanks. > > Reviewed-by: Fabio Estevam <fabio.estevam@nxp.com> Should I apply this to clk-next or is someone (Shawn?) gathering patches for a pull request? Regards, Mike > -- > To unsubscribe from this list: send the line "unsubscribe linux-clk" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html
On Wed, Feb 17, 2016 at 11:57:25AM -0800, Michael Turquette wrote: > Quoting Fabio Estevam (2016-02-17 10:58:13) > > On Wed, Feb 17, 2016 at 4:48 PM, Anatolij Gustschin <agust@denx.de> wrote: > > > Don't capitalize p in the pwm7 clock name. > > > > > > Signed-off-by: Anatolij Gustschin <agust@denx.de> > > > > Thanks. > > > > Reviewed-by: Fabio Estevam <fabio.estevam@nxp.com> > > Should I apply this to clk-next or is someone (Shawn?) gathering patches > for a pull request? Yes, I'm collecting i.MX clock patches for a pull request that will go to you later. Patch applied, thanks. Shawn
diff --git a/drivers/clk/imx/clk-imx6ul.c b/drivers/clk/imx/clk-imx6ul.c index 01718d0..15f2ac8 100644 --- a/drivers/clk/imx/clk-imx6ul.c +++ b/drivers/clk/imx/clk-imx6ul.c @@ -394,7 +394,7 @@ static void __init imx6ul_clocks_init(struct device_node *ccm_node) clks[IMX6UL_CLK_I2C4] = imx_clk_gate2("i2c4", "perclk", base + 0x80, 24); clks[IMX6UL_CLK_PWM5] = imx_clk_gate2("pwm5", "perclk", base + 0x80, 26); clks[IMX6UL_CLK_PWM6] = imx_clk_gate2("pwm6", "perclk", base + 0x80, 28); - clks[IMX6UL_CLK_PWM7] = imx_clk_gate2("Pwm7", "perclk", base + 0x80, 30); + clks[IMX6UL_CLK_PWM7] = imx_clk_gate2("pwm7", "perclk", base + 0x80, 30); /* mask handshake of mmdc */ writel_relaxed(BM_CCM_CCDR_MMDC_CH0_MASK, base + CCDR);
Don't capitalize p in the pwm7 clock name. Signed-off-by: Anatolij Gustschin <agust@denx.de> --- drivers/clk/imx/clk-imx6ul.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)