]> git.baikalelectronics.ru Git - kernel.git/commit
pinctrl: single: Fix pcs_parse_bits_in_pinctrl_entry to use __ffs than ffs
authorKeerthy <j-keerthy@ti.com>
Thu, 14 Apr 2016 04:59:16 +0000 (10:29 +0530)
committerLinus Walleij <linus.walleij@linaro.org>
Fri, 15 Apr 2016 09:26:55 +0000 (11:26 +0200)
commitff4ccaf98e03a34a8ff627abb2a0ddaabe47c5e3
tree047fa9663a42d64c1f2677f150172c0e82cb1cea
parent3859d75180f2275336e83da742400f8055901e90
pinctrl: single: Fix pcs_parse_bits_in_pinctrl_entry to use __ffs than ffs

pcs_parse_bits_in_pinctrl_entry uses ffs which gives bit indices
ranging from 1 to MAX. This leads to a corner case where we try to request
the pin number = MAX and fails.

bit_pos value is being calculted using ffs. pin_num_from_lsb uses
bit_pos value. pins array is populated with:

pin + pin_num_from_lsb.

The above is 1 more than usual bit indices as bit_pos uses ffs to compute
first set bit. Hence the last of the pins array is populated with the MAX
value and not MAX - 1 which causes error when we call pin_request.

mask_pos is rightly calculated as ((pcs->fmask) << (bit_pos - 1))
Consequently val_pos and submask are correct.

Hence use __ffs which gives (ffs(x) - 1) as the first bit set.

fixes: 6003ce361a ("pinctrl: pinctrl-single: enhance to configure multiple pins of different modules")
Signed-off-by: Keerthy <j-keerthy@ti.com>
Acked-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/pinctrl-single.c