Message ID | 20181024182442.206411-1-sean@poorly.run (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | drm: Fix doc warning in drm_connector_attach_edid_property() | expand |
On Wed, Oct 24, 2018 at 2:26 PM Sean Paul <sean@poorly.run> wrote: > > From: Sean Paul <seanpaul@chromium.org> > > Fixes the following warnings: > ../drivers/gpu/drm/drm_connector.c:305: warning: Excess function parameter 'dev' description in 'drm_connector_attach_edid_property' > ../drivers/gpu/drm/drm_connector.c:306: warning: Excess function parameter 'dev' description in 'drm_connector_attach_edid_property' > ../drivers/gpu/drm/drm_connector.c:305: warning: Excess function parameter 'dev' description in 'drm_connector_attach_edid_property' > ../drivers/gpu/drm/drm_connector.c:305: warning: Excess function parameter 'dev' description in 'drm_connector_attach_edid_property' > ../drivers/gpu/drm/drm_connector.c:305: warning: Excess function parameter 'dev' description in 'drm_connector_attach_edid_property' > > Fixes: 6b7e2d5c3032 ("drm: add drm_connector_attach_edid_property()") > Cc: Gerd Hoffmann <kraxel@redhat.com> > Cc: Daniel Vetter <daniel.vetter@ffwll.ch> > Cc: dri-devel@lists.freedesktop.org > Signed-off-by: Sean Paul <seanpaul@chromium.org> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> > --- > drivers/gpu/drm/drm_connector.c | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/drivers/gpu/drm/drm_connector.c b/drivers/gpu/drm/drm_connector.c > index 5d01414ec9f7..c555e17ab8d7 100644 > --- a/drivers/gpu/drm/drm_connector.c > +++ b/drivers/gpu/drm/drm_connector.c > @@ -294,7 +294,6 @@ EXPORT_SYMBOL(drm_connector_init); > > /** > * drm_connector_attach_edid_property - attach edid property. > - * @dev: DRM device > * @connector: the connector > * > * Some connector types like DRM_MODE_CONNECTOR_VIRTUAL do not get a > -- > Sean Paul, Software Engineer, Google / Chromium OS > > _______________________________________________ > dri-devel mailing list > dri-devel@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/dri-devel
On Wed, Oct 24, 2018 at 3:31 PM Alex Deucher <alexdeucher@gmail.com> wrote: > > On Wed, Oct 24, 2018 at 2:26 PM Sean Paul <sean@poorly.run> wrote: > > > > From: Sean Paul <seanpaul@chromium.org> > > > > Fixes the following warnings: > > ../drivers/gpu/drm/drm_connector.c:305: warning: Excess function parameter 'dev' description in 'drm_connector_attach_edid_property' > > ../drivers/gpu/drm/drm_connector.c:306: warning: Excess function parameter 'dev' description in 'drm_connector_attach_edid_property' > > ../drivers/gpu/drm/drm_connector.c:305: warning: Excess function parameter 'dev' description in 'drm_connector_attach_edid_property' > > ../drivers/gpu/drm/drm_connector.c:305: warning: Excess function parameter 'dev' description in 'drm_connector_attach_edid_property' > > ../drivers/gpu/drm/drm_connector.c:305: warning: Excess function parameter 'dev' description in 'drm_connector_attach_edid_property' > > > > Fixes: 6b7e2d5c3032 ("drm: add drm_connector_attach_edid_property()") > > Cc: Gerd Hoffmann <kraxel@redhat.com> > > Cc: Daniel Vetter <daniel.vetter@ffwll.ch> > > Cc: dri-devel@lists.freedesktop.org > > Signed-off-by: Sean Paul <seanpaul@chromium.org> > > Reviewed-by: Alex Deucher <alexander.deucher@amd.com> > Pushed to drm-misc-next. Thanks for the review, Alex! Sean > > --- > > drivers/gpu/drm/drm_connector.c | 1 - > > 1 file changed, 1 deletion(-) > > > > diff --git a/drivers/gpu/drm/drm_connector.c b/drivers/gpu/drm/drm_connector.c > > index 5d01414ec9f7..c555e17ab8d7 100644 > > --- a/drivers/gpu/drm/drm_connector.c > > +++ b/drivers/gpu/drm/drm_connector.c > > @@ -294,7 +294,6 @@ EXPORT_SYMBOL(drm_connector_init); > > > > /** > > * drm_connector_attach_edid_property - attach edid property. > > - * @dev: DRM device > > * @connector: the connector > > * > > * Some connector types like DRM_MODE_CONNECTOR_VIRTUAL do not get a > > -- > > Sean Paul, Software Engineer, Google / Chromium OS > > > > _______________________________________________ > > dri-devel mailing list > > dri-devel@lists.freedesktop.org > > https://lists.freedesktop.org/mailman/listinfo/dri-devel
diff --git a/drivers/gpu/drm/drm_connector.c b/drivers/gpu/drm/drm_connector.c index 5d01414ec9f7..c555e17ab8d7 100644 --- a/drivers/gpu/drm/drm_connector.c +++ b/drivers/gpu/drm/drm_connector.c @@ -294,7 +294,6 @@ EXPORT_SYMBOL(drm_connector_init); /** * drm_connector_attach_edid_property - attach edid property. - * @dev: DRM device * @connector: the connector * * Some connector types like DRM_MODE_CONNECTOR_VIRTUAL do not get a