The branch main has been updated by jhb:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=42278fc2e699e21b4206011c06c323c557453eae

commit 42278fc2e699e21b4206011c06c323c557453eae
Author:     John Baldwin <[email protected]>
AuthorDate: 2022-04-13 23:08:22 +0000
Commit:     John Baldwin <[email protected]>
CommitDate: 2022-04-13 23:08:22 +0000

    drm2: Remove unused variables.
---
 sys/dev/drm2/drm_fb_helper.c |  8 ++------
 sys/dev/drm2/drm_global.c    |  2 --
 sys/dev/drm2/drm_modes.c     | 24 ++++--------------------
 3 files changed, 6 insertions(+), 28 deletions(-)

diff --git a/sys/dev/drm2/drm_fb_helper.c b/sys/dev/drm2/drm_fb_helper.c
index 8cb913570c13..c5ec36724a35 100644
--- a/sys/dev/drm2/drm_fb_helper.c
+++ b/sys/dev/drm2/drm_fb_helper.c
@@ -1252,7 +1252,6 @@ static int drm_pick_crtcs(struct drm_fb_helper *fb_helper,
        struct drm_connector *connector;
        struct drm_connector_helper_funcs *connector_funcs;
        struct drm_encoder *encoder;
-       struct drm_fb_helper_crtc *best_crtc;
        int my_score, best_score, score;
        struct drm_fb_helper_crtc **crtcs, *crtc;
        struct drm_fb_helper_connector *fb_helper_conn;
@@ -1264,7 +1263,6 @@ static int drm_pick_crtcs(struct drm_fb_helper *fb_helper,
        connector = fb_helper_conn->connector;
 
        best_crtcs[n] = NULL;
-       best_crtc = NULL;
        best_score = drm_pick_crtcs(fb_helper, best_crtcs, modes, n+1, width, 
height);
        if (modes[n] == NULL)
                return best_score;
@@ -1313,7 +1311,6 @@ static int drm_pick_crtcs(struct drm_fb_helper *fb_helper,
                score = my_score + drm_pick_crtcs(fb_helper, crtcs, modes, n + 
1,
                                                  width, height);
                if (score > best_score) {
-                       best_crtc = crtc;
                        best_score = score;
                        memcpy(best_crtcs, crtcs,
                               dev->mode_config.num_connector *
@@ -1453,7 +1450,6 @@ EXPORT_SYMBOL(drm_fb_helper_initial_config);
 int drm_fb_helper_hotplug_event(struct drm_fb_helper *fb_helper)
 {
        struct drm_device *dev = fb_helper->dev;
-       int count = 0;
        u32 max_width, max_height, bpp_sel;
        int bound = 0, crtcs_bound = 0;
        struct drm_crtc *crtc;
@@ -1480,8 +1476,8 @@ int drm_fb_helper_hotplug_event(struct drm_fb_helper 
*fb_helper)
        max_height = fb_helper->fb->height;
        bpp_sel = fb_helper->fb->bits_per_pixel;
 
-       count = drm_fb_helper_probe_connector_modes(fb_helper, max_width,
-                                                   max_height);
+       drm_fb_helper_probe_connector_modes(fb_helper, max_width,
+                                           max_height);
        drm_setup_crtcs(fb_helper);
        sx_xunlock(&dev->mode_config.mutex);
 
diff --git a/sys/dev/drm2/drm_global.c b/sys/dev/drm2/drm_global.c
index 2778aac3a23c..2b1cc3193601 100644
--- a/sys/dev/drm2/drm_global.c
+++ b/sys/dev/drm2/drm_global.c
@@ -71,7 +71,6 @@ int drm_global_item_ref(struct drm_global_reference *ref)
 {
        int ret;
        struct drm_global_item *item = &glob[ref->global_type];
-       void *object;
 
        sx_xlock(&item->mutex);
        if (item->refcount == 0) {
@@ -90,7 +89,6 @@ int drm_global_item_ref(struct drm_global_reference *ref)
        }
        ++item->refcount;
        ref->object = item->object;
-       object = item->object;
        sx_xunlock(&item->mutex);
        return 0;
 out_err:
diff --git a/sys/dev/drm2/drm_modes.c b/sys/dev/drm2/drm_modes.c
index 5467be5ab44a..7c184d28d2bf 100644
--- a/sys/dev/drm2/drm_modes.c
+++ b/sys/dev/drm2/drm_modes.c
@@ -173,7 +173,7 @@ struct drm_display_mode *drm_cvt_mode(struct drm_device 
*dev, int hdisplay,
                /* 3) Nominal HSync width (% of line period) - default 8 */
 #define CVT_HSYNC_PERCENTAGE   8
                unsigned int hblank_percentage;
-               int vsyncandback_porch, vback_porch, hblank;
+               int vsyncandback_porch, hblank;
 
                /* estimated the horizontal period */
                tmp1 = HV_FACTOR * 1000000  -
@@ -188,8 +188,6 @@ struct drm_display_mode *drm_cvt_mode(struct drm_device 
*dev, int hdisplay,
                        vsyncandback_porch = vsync + CVT_MIN_V_PORCH;
                else
                        vsyncandback_porch = tmp1;
-               /* 10. Find number of lines in back porch */
-               vback_porch = vsyncandback_porch - vsync;
                drm_mode->vtotal = vdisplay_rnd + 2 * vmargin +
                                vsyncandback_porch + CVT_MIN_V_PORCH;
                /* 5) Definition of Horizontal blanking time limitation */
@@ -321,9 +319,8 @@ drm_gtf_mode_complex(struct drm_device *dev, int hdisplay, 
int vdisplay,
        int top_margin, bottom_margin;
        int interlace;
        unsigned int hfreq_est;
-       int vsync_plus_bp, vback_porch;
-       unsigned int vtotal_lines, vfieldrate_est, hperiod;
-       unsigned int vfield_rate, vframe_rate;
+       int vsync_plus_bp;
+       unsigned int vtotal_lines;
        int left_margin, right_margin;
        unsigned int total_active_pixels, ideal_duty_cycle;
        unsigned int hblank, total_pixels, pixel_freq;
@@ -383,23 +380,10 @@ drm_gtf_mode_complex(struct drm_device *dev, int 
hdisplay, int vdisplay,
        /* [V SYNC+BP] = RINT(([MIN VSYNC+BP] * hfreq_est / 1000000)) */
        vsync_plus_bp = MIN_VSYNC_PLUS_BP * hfreq_est / 1000;
        vsync_plus_bp = (vsync_plus_bp + 500) / 1000;
-       /*  9. Find the number of lines in V back porch alone: */
-       vback_porch = vsync_plus_bp - V_SYNC_RQD;
        /*  10. Find the total number of lines in Vertical field period: */
        vtotal_lines = vdisplay_rnd + top_margin + bottom_margin +
                        vsync_plus_bp + GTF_MIN_V_PORCH;
-       /*  11. Estimate the Vertical field frequency: */
-       vfieldrate_est = hfreq_est / vtotal_lines;
-       /*  12. Find the actual horizontal period: */
-       hperiod = 1000000 / (vfieldrate_rqd * vtotal_lines);
-
-       /*  13. Find the actual Vertical field frequency: */
-       vfield_rate = hfreq_est / vtotal_lines;
-       /*  14. Find the Vertical frame frequency: */
-       if (interlaced)
-               vframe_rate = vfield_rate / 2;
-       else
-               vframe_rate = vfield_rate;
+
        /*  15. Find number of pixels in left margin: */
        if (margins)
                left_margin = (hdisplay_rnd * GTF_MARGIN_PERCENTAGE + 500) /

Reply via email to