[DragonFlyBSD - Bug #3102] (New) sys/dev/drm/radeon/radeon_uvd.c:897: possible cut'n'paste issue ?
    bugtracker-admin at leaf.dragonflybsd.org 
    bugtracker-admin at leaf.dragonflybsd.org
       
    Wed Nov 15 02:23:52 PST 2017
    
    
  
Issue #3102 has been reported by dcb.
----------------------------------------
Bug #3102: sys/dev/drm/radeon/radeon_uvd.c:897: possible cut'n'paste issue ?
http://bugs.dragonflybsd.org/issues/3102
* Author: dcb
* Status: New
* Priority: Normal
* Assignee: 
* Category: Kernel
* Target version: 
----------------------------------------
dragonfly/sys/dev/drm/radeon/radeon_uvd.c:897] -> [dragonfly/sys/dev/drm/radeon/radeon_uvd.c:903]: (warning) Identical condition 'vclk_div>pd_max', second condition is always false
Source code is
        if (vclk_div > pd_max)
            break; /* vco is too big, it has to stop */
        /* calc dclk divider with current vco freq */
        dclk_div = radeon_uvd_calc_upll_post_div(vco_freq, dclk,
                             pd_min, pd_even);
        if (vclk_div > pd_max)
            break; /* vco is too big, it has to stop */
Maybe the 2nd if would be better if it sanity checked dclk_div, like
        if (dclk_div > pd_max)
            break; /* vco is too big, it has to stop */
 
-- 
You have received this notification because you have either subscribed to it, or are involved in it.
To change your notification preferences, please click here: http://bugs.dragonflybsd.org/my/account
    
    
More information about the Bugs
mailing list