On 12 February 2013 02:42, Alexander Shiyan <shc_w...@mail.ru> wrote: > > Signed-off-by: Alexander Shiyan <shc_w...@mail.ru>
Acked-by: Dong Aisheng <dong.aish...@linaro.org> Regards Dong Aisheng > --- > drivers/mfd/syscon.c | 5 +---- > 1 file changed, 1 insertion(+), 4 deletions(-) > > diff --git a/drivers/mfd/syscon.c b/drivers/mfd/syscon.c > index e1886fb..4a7ed5a 100644 > --- a/drivers/mfd/syscon.c > +++ b/drivers/mfd/syscon.c > @@ -24,17 +24,15 @@ > static struct platform_driver syscon_driver; > > struct syscon { > - struct device *dev; > void __iomem *base; > struct regmap *regmap; > }; > > static int syscon_match(struct device *dev, void *data) > { > - struct syscon *syscon = dev_get_drvdata(dev); > struct device_node *dn = data; > > - return (syscon->dev->of_node == dn) ? 1 : 0; > + return (dev->of_node == dn) ? 1 : 0; > } > > struct regmap *syscon_node_to_regmap(struct device_node *np) > @@ -129,7 +127,6 @@ static int syscon_probe(struct platform_device *pdev) > return PTR_ERR(syscon->regmap); > } > > - syscon->dev = dev; > platform_set_drvdata(pdev, syscon); > > dev_info(dev, "syscon regmap start 0x%x end 0x%x registered\n", > -- > 1.7.12.4 > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/