Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1607492 > unrolled thread
| Started by | Richard Leitner <richard.leitner@skidata.com> |
|---|---|
| First post | 2017-03-23 14:30 +0100 |
| Last post | 2017-03-23 14:30 +0100 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
[PATCH] nvmem: imx-ocotp: fix usage of "dev" pointers Richard Leitner <richard.leitner@skidata.com> - 2017-03-23 14:30 +0100
| From | Richard Leitner <richard.leitner@skidata.com> |
|---|---|
| Date | 2017-03-23 14:30 +0100 |
| Subject | [PATCH] nvmem: imx-ocotp: fix usage of "dev" pointers |
| Message-ID | <toaYq-2KA-13@gated-at.bofh.it> |
Assign the correct dev pointer to struct ocotp_priv during probe. This is needed to display dev_* messages correctly. Furthermore harmonize the usage of dev (instead of &pdev->dev) in the probe function. Signed-off-by: Richard Leitner <richard.leitner@skidata.com> --- drivers/nvmem/imx-ocotp.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/nvmem/imx-ocotp.c b/drivers/nvmem/imx-ocotp.c index b8ca1e6..549177d 100644 --- a/drivers/nvmem/imx-ocotp.c +++ b/drivers/nvmem/imx-ocotp.c @@ -90,12 +90,14 @@ static int imx_ocotp_probe(struct platform_device *pdev) if (!priv) return -ENOMEM; + priv->dev = dev; + res = platform_get_resource(pdev, IORESOURCE_MEM, 0); priv->base = devm_ioremap_resource(dev, res); if (IS_ERR(priv->base)) return PTR_ERR(priv->base); - priv->clk = devm_clk_get(&pdev->dev, NULL); + priv->clk = devm_clk_get(dev, NULL); if (IS_ERR(priv->clk)) return PTR_ERR(priv->clk); -- 2.1.4
Back to top | Article view | linux.kernel
csiph-web