You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in ddc/ddc.c: ddc_write, the new value is set with:
data[5] = (_p_write).new_value;
data[4] = 0x1;
which is incorrect for values < 0x1ff. It should be:
data[4] = ((_p_write).new_value) >> 8;
data[5] = ((*p_write).new_value & 255);
The text was updated successfully, but these errors were encountered:
kfix
added a commit
to kfix/ddcctl
that referenced
this issue
Nov 20, 2015
in ddc/ddc.c: ddc_write, the new value is set with:
data[5] = (_p_write).new_value;
data[4] = 0x1;
which is incorrect for values < 0x1ff. It should be:
data[4] = ((_p_write).new_value) >> 8;
data[5] = ((*p_write).new_value & 255);
The text was updated successfully, but these errors were encountered: