This is an automatic generated email to let you know that the following patch 
were queued at the 
http://git.linuxtv.org/cgit.cgi/media_tree.git tree:

Subject: [media] smiapp: Read link-frequencies property from the endpoint node
Author:  Sakari Ailus <[email protected]>
Date:    Mon Mar 9 18:46:32 2015 -0300

The documentation stated that the link-frequencies property belongs to the
endpoint node, not to the device's of_node. Fix this.

There are no DT board descriptions using the driver yet, so a fix in the
driver is sufficient.

Signed-off-by: Sakari Ailus <[email protected]>
Acked-by: Lad, Prabhakar <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>

 drivers/media/i2c/smiapp/smiapp-core.c |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

---

http://git.linuxtv.org/cgit.cgi/media_tree.git/commit/?id=9a68c9fa760c958653def811ed7257e3e9bb2ee5

diff --git a/drivers/media/i2c/smiapp/smiapp-core.c 
b/drivers/media/i2c/smiapp/smiapp-core.c
index f062f43..f714eb7 100644
--- a/drivers/media/i2c/smiapp/smiapp-core.c
+++ b/drivers/media/i2c/smiapp/smiapp-core.c
@@ -3025,8 +3025,7 @@ static struct smiapp_platform_data 
*smiapp_get_pdata(struct device *dev)
        dev_dbg(dev, "reset %d, nvm %d, clk %d, csi %d\n", pdata->xshutdown,
                pdata->nvm_size, pdata->ext_clk, pdata->csi_signalling_mode);
 
-       rval = of_get_property(
-               dev->of_node, "link-frequencies", &asize) ? 0 : -ENOENT;
+       rval = of_get_property(ep, "link-frequencies", &asize) ? 0 : -ENOENT;
        if (rval) {
                dev_warn(dev, "can't get link-frequencies array size\n");
                goto out_err;
@@ -3040,7 +3039,7 @@ static struct smiapp_platform_data 
*smiapp_get_pdata(struct device *dev)
 
        asize /= sizeof(*pdata->op_sys_clock);
        rval = of_property_read_u64_array(
-               dev->of_node, "link-frequencies", pdata->op_sys_clock, asize);
+               ep, "link-frequencies", pdata->op_sys_clock, asize);
        if (rval) {
                dev_warn(dev, "can't get link-frequencies\n");
                goto out_err;

_______________________________________________
linuxtv-commits mailing list
[email protected]
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to