Message ID | 20170615222302.GB20714@amd (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On 06/16/2017 12:23 AM, Pavel Machek wrote: > > Fix compilation of isp.c > > Signed-off-by: Pavel Machek <pavel@ucw.cz> > > diff --git a/drivers/media/platform/omap3isp/isp.c b/drivers/media/platform/omap3isp/isp.c > index 4ca3fc9..b80debf 100644 > --- a/drivers/media/platform/omap3isp/isp.c > +++ b/drivers/media/platform/omap3isp/isp.c > @@ -2026,7 +2026,7 @@ static int isp_fwnode_parse(struct device *dev, struct fwnode_handle *fwnode, > > isd->bus = buscfg; > > - ret = v4l2_fwnode_endpoint_parse(fwn, vep); > + ret = v4l2_fwnode_endpoint_parse(fwnode, &vep); > if (ret) > return ret; > > You're using something old since the media tree master already uses &vep. Regards, Hans
On Fri, Jun 16, 2017 at 10:03:41AM +0200, Hans Verkuil wrote: > On 06/16/2017 12:23 AM, Pavel Machek wrote: > > > >Fix compilation of isp.c > >Signed-off-by: Pavel Machek <pavel@ucw.cz> > > > >diff --git a/drivers/media/platform/omap3isp/isp.c b/drivers/media/platform/omap3isp/isp.c > >index 4ca3fc9..b80debf 100644 > >--- a/drivers/media/platform/omap3isp/isp.c > >+++ b/drivers/media/platform/omap3isp/isp.c > >@@ -2026,7 +2026,7 @@ static int isp_fwnode_parse(struct device *dev, struct fwnode_handle *fwnode, > > isd->bus = buscfg; > >- ret = v4l2_fwnode_endpoint_parse(fwn, vep); > >+ ret = v4l2_fwnode_endpoint_parse(fwnode, &vep); > > if (ret) > > return ret; > > > > You're using something old since the media tree master already uses &vep. Well, yes and no. Pavel is using my ccp2 support branch I recently rebased. :-)
diff --git a/drivers/media/platform/omap3isp/isp.c b/drivers/media/platform/omap3isp/isp.c index 4ca3fc9..b80debf 100644 --- a/drivers/media/platform/omap3isp/isp.c +++ b/drivers/media/platform/omap3isp/isp.c @@ -2026,7 +2026,7 @@ static int isp_fwnode_parse(struct device *dev, struct fwnode_handle *fwnode, isd->bus = buscfg; - ret = v4l2_fwnode_endpoint_parse(fwn, vep); + ret = v4l2_fwnode_endpoint_parse(fwnode, &vep); if (ret) return ret;
Fix compilation of isp.c Signed-off-by: Pavel Machek <pavel@ucw.cz>