[PATCH 2/3] drm: replace the 'for' condition with outside defined variable

John Hunter zhjwpku at gmail.com
Tue Mar 17 01:48:23 PDT 2015


Hi Daniel,

On Tue, Mar 17, 2015 at 4:40 PM, Daniel Vetter <daniel at ffwll.ch> wrote:

> On Tue, Mar 17, 2015 at 03:30:27PM +0800, John Hunter wrote:
> > use outdise defined variable can reduce the recaculate of the
> > count of planes, crtcs and connectors.
> >
> > Signed-off-by: John Hunter <zhjwpku at gmail.com>
>
> Hm, what's the benefit you see for this change? The lines aren't too long
> yet and we don't reuse the expression, so imo code readability isn't
> improved.
>
I change this just reference some other functions in the same file.
like,
     drm_atomic_helper_check_planes
     wait_for_fences
     ...
I really think we should keep the same coding style in the same file.
If I am wrong with that, just ignore this patch :-)

> -Daniel
> > ---
> >  drivers/gpu/drm/drm_atomic_helper.c | 9 ++++++---
> >  1 file changed, 6 insertions(+), 3 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/drm_atomic_helper.c
> b/drivers/gpu/drm/drm_atomic_helper.c
> > index 39369ee..20376e6 100644
> > --- a/drivers/gpu/drm/drm_atomic_helper.c
> > +++ b/drivers/gpu/drm/drm_atomic_helper.c
> > @@ -1301,8 +1301,11 @@ void drm_atomic_helper_swap_state(struct
> drm_device *dev,
> >                                 struct drm_atomic_state *state)
> >  {
> >       int i;
> > +     int nconnectors = dev->mode_config.num_connector;
> > +     int ncrtcs = dev->mode_config.num_crtc;
> > +     int nplanes = dev->mode_config.num_total_plane;
> >
> > -     for (i = 0; i < dev->mode_config.num_connector; i++) {
> > +     for (i = 0; i < nconnectors; i++) {
> >               struct drm_connector *connector = state->connectors[i];
> >
> >               if (!connector)
> > @@ -1313,7 +1316,7 @@ void drm_atomic_helper_swap_state(struct
> drm_device *dev,
> >               connector->state->state = NULL;
> >       }
> >
> > -     for (i = 0; i < dev->mode_config.num_crtc; i++) {
> > +     for (i = 0; i < ncrtcs; i++) {
> >               struct drm_crtc *crtc = state->crtcs[i];
> >
> >               if (!crtc)
> > @@ -1324,7 +1327,7 @@ void drm_atomic_helper_swap_state(struct
> drm_device *dev,
> >               crtc->state->state = NULL;
> >       }
> >
> > -     for (i = 0; i < dev->mode_config.num_total_plane; i++) {
> > +     for (i = 0; i < nplanes; i++) {
> >               struct drm_plane *plane = state->planes[i];
> >
> >               if (!plane)
> > --
> > 1.9.1
> >
> >
> > _______________________________________________
> > dri-devel mailing list
> > dri-devel at lists.freedesktop.org
> > http://lists.freedesktop.org/mailman/listinfo/dri-devel
>
> --
> Daniel Vetter
> Software Engineer, Intel Corporation
> http://blog.ffwll.ch
> _______________________________________________
> dri-devel mailing list
> dri-devel at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/dri-devel
>



-- 
Best regards
Junwang Zhao
Microprocessor Research and Develop Center
Department of Computer Science &Technology
Peking University
Beijing, 100871, PRC
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150317/a2578300/attachment.html>


More information about the dri-devel mailing list