Message ID | 1379608835-11760-12-git-send-email-damien.lespiau@intel.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Fri, Sep 20, 2013 at 2:40 AM, Damien Lespiau <damien.lespiau@intel.com> wrote: > This field was only accessed by the nouveau driver, but never set. So > concluded we can rid of this one. > > Cc: Ben Skeggs <bskeggs@redhat.com> > Signed-off-by: Damien Lespiau <damien.lespiau@intel.com> Acked-by: Ben Skeggs <bskeggs@redhat.com> > --- > drivers/gpu/drm/nouveau/dispnv04/crtc.c | 2 -- > include/drm/drm_crtc.h | 1 - > 2 files changed, 3 deletions(-) > > diff --git a/drivers/gpu/drm/nouveau/dispnv04/crtc.c b/drivers/gpu/drm/nouveau/dispnv04/crtc.c > index d4fbf11..0e3270c 100644 > --- a/drivers/gpu/drm/nouveau/dispnv04/crtc.c > +++ b/drivers/gpu/drm/nouveau/dispnv04/crtc.c > @@ -326,8 +326,6 @@ nv_crtc_mode_set_vga(struct drm_crtc *crtc, struct drm_display_mode *mode) > regp->MiscOutReg = 0x23; /* +hsync +vsync */ > } > > - regp->MiscOutReg |= (mode->clock_index & 0x03) << 2; > - > /* > * Time Sequencer > */ > diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h > index 1b69407..011baaa 100644 > --- a/include/drm/drm_crtc.h > +++ b/include/drm/drm_crtc.h > @@ -156,7 +156,6 @@ struct drm_display_mode { > int height_mm; > > /* Actual mode we give to hw */ > - int clock_index; > int synth_clock; > int crtc_hdisplay; > int crtc_hblank_start; > -- > 1.8.3.1 > > _______________________________________________ > dri-devel mailing list > dri-devel@lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/dri-devel
diff --git a/drivers/gpu/drm/nouveau/dispnv04/crtc.c b/drivers/gpu/drm/nouveau/dispnv04/crtc.c index d4fbf11..0e3270c 100644 --- a/drivers/gpu/drm/nouveau/dispnv04/crtc.c +++ b/drivers/gpu/drm/nouveau/dispnv04/crtc.c @@ -326,8 +326,6 @@ nv_crtc_mode_set_vga(struct drm_crtc *crtc, struct drm_display_mode *mode) regp->MiscOutReg = 0x23; /* +hsync +vsync */ } - regp->MiscOutReg |= (mode->clock_index & 0x03) << 2; - /* * Time Sequencer */ diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h index 1b69407..011baaa 100644 --- a/include/drm/drm_crtc.h +++ b/include/drm/drm_crtc.h @@ -156,7 +156,6 @@ struct drm_display_mode { int height_mm; /* Actual mode we give to hw */ - int clock_index; int synth_clock; int crtc_hdisplay; int crtc_hblank_start;
This field was only accessed by the nouveau driver, but never set. So concluded we can rid of this one. Cc: Ben Skeggs <bskeggs@redhat.com> Signed-off-by: Damien Lespiau <damien.lespiau@intel.com> --- drivers/gpu/drm/nouveau/dispnv04/crtc.c | 2 -- include/drm/drm_crtc.h | 1 - 2 files changed, 3 deletions(-)