Stefan Sperling <stsp <at> stsp.name> writes:

> -     if (((fw_version & 0x0f0000) >> 16) < 6)
> +     if (((fw_version & 0x0f0000) >> 16) != 6 &&
> +         (fw_version & 0x0f0000) >> 16 != 8)

fw_version & 0x0f0000) >> 16 is repeating twice
(at least).

Is it good idea to turn above magic into a macro
with meaningful name?

Reply via email to