> /* safety net should the EC not support AUTO
> * or FULLSPEED mode bits and just ignore them */
> if (level & TP_EC_FAN_FULLSPEED)
> level |= 7; /* safety min speed 7 */
> else if (level & TP_EC_FAN_FULLSPEED)
> level |= 4; /* safety min speed 4 */
>
> Note the duplicate test 'if (level & TP_EC_FAN_FULLSPEED)'. should
> this be replaced by
Actually I suspect one of the two tests should be against TP_EC_FAN_AUTO
(based on the comment).
--