]> git.proxmox.com Git - mirror_ubuntu-artful-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)
committerKamal Mostafa <kamal@canonical.com>
Mon, 16 May 2016 17:25:55 +0000 (10:25 -0700)
commit3abcbedd4ca1aef131323e7904fd2a4f48f891ee
treefd37b44335ddeb6f055264e927a63b7ac14182f4
parent593de50468824582a08eb41956e42d7005b0cf08
pinctrl: single: Fix pcs_parse_bits_in_pinctrl_entry to use __ffs than ffs

BugLink: http://bugs.launchpad.net/bugs/1578798
commit 56b367c0cd67d4c3006738e7dc9dda9273fd2bfe upstream.

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: 4e7e8017a8 ("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>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
drivers/pinctrl/pinctrl-single.c