gpio: pca953x: Fix NBANK calculation for PCA9536
authorVignesh R <vigneshr@ti.com>
Thu, 9 Jun 2016 05:32:04 +0000 (11:02 +0530)
committerWilly Tarreau <w@1wt.eu>
Sat, 27 Aug 2016 09:40:35 +0000 (11:40 +0200)
commit68a444857c7965327f3a4ad79c0b0ddee4de2915
treef6e80c0a7dc53d22b827305161782e4402f6dffd
parent3787fb664c0ce85a6205e2e852dcc6a270ae23f9
gpio: pca953x: Fix NBANK calculation for PCA9536

commit a246b8198f776a16d1d3a3bbfc2d437bad766b29 upstream.

NBANK() macro assumes that ngpios is a multiple of 8(BANK_SZ) and
hence results in 0 banks for PCA9536 which has just 4 gpios. This is
wrong as PCA9356 has 1 bank with 4 gpios. This results in uninitialized
PCA953X_INVERT register. Fix this by using DIV_ROUND_UP macro in
NBANK().

Cc: stable@vger.kernel.org
Signed-off-by: Vignesh R <vigneshr@ti.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Willy Tarreau <w@1wt.eu>
drivers/gpio/gpio-pca953x.c