staging: vt6656: Use fls instead of for loop in vnt_update_top_rates
authorOscar Carter <oscar.carter@gmx.com>
Mon, 20 Apr 2020 15:52:46 +0000 (17:52 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 23 Apr 2020 11:39:51 +0000 (13:39 +0200)
commitbf42304b55f59af5e71c86e46291705023dce62e
tree1731508648fe913fdb2addc986f0fbfa0c66e898
parent9f8c9f4a2e6f23fc6eeecd305bfb40ddc91e0369
staging: vt6656: Use fls instead of for loop in vnt_update_top_rates

Replace the for loops of the vnt_update_top_rates function by the fls
function.

The purpose of the two for loops is to find the most significant bit set
in a range of bits. So, they can be replace by the fls function (find
last set) with a previous mask to define the range.

This way avoid the iteration over unnecessary for loops.

The header "linux/bits.h" can be remove as it is included in the header
"linux/bitops.h".

Signed-off-by: Oscar Carter <oscar.carter@gmx.com>
Link: https://lore.kernel.org/r/20200420155246.4925-1-oscar.carter@gmx.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6656/card.c