On Fri, Jul 06, 2012 at 03:31:32PM -0300, Fabio Estevam wrote: > With the new i.mx clock framework the i2c clock is registered as: > > clk_register_clkdev(clk[i2c1_ipg_gate], NULL, "imx-i2c.0") > > So we do not need to pass "i2c_clk" string and can use NULL instead. > > Signed-off-by: Fabio Estevam <fabio.estevam@xxxxxxxxxxxxx> Acked-by: Sascha Hauer <s.hauer@xxxxxxxxxxxxxx> Sascha > --- > drivers/i2c/busses/i2c-imx.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/drivers/i2c/busses/i2c-imx.c b/drivers/i2c/busses/i2c-imx.c > index 370031a..a8709b1 100644 > --- a/drivers/i2c/busses/i2c-imx.c > +++ b/drivers/i2c/busses/i2c-imx.c > @@ -528,7 +528,7 @@ static int __init i2c_imx_probe(struct platform_device *pdev) > } > > /* Get I2C clock */ > - i2c_imx->clk = clk_get(&pdev->dev, "i2c_clk"); > + i2c_imx->clk = clk_get(&pdev->dev, NULL); > if (IS_ERR(i2c_imx->clk)) { > ret = PTR_ERR(i2c_imx->clk); > dev_err(&pdev->dev, "can't get I2C clock\n"); > -- > 1.7.1 > > -- Pengutronix e.K. | | Industrial Linux Solutions | http://www.pengutronix.de/ | Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 | -- To unsubscribe from this list: send the line "unsubscribe linux-i2c" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html