Skip to content

Commit

Permalink
gpio: pca953x: Fix NBANK calculation for PCA9536
Browse files Browse the repository at this point in the history
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: [email protected]
Signed-off-by: Vignesh R <[email protected]>
Signed-off-by: Linus Walleij <[email protected]>
  • Loading branch information
r-vignesh authored and linusw committed Jun 13, 2016
1 parent c0d30ec commit a246b81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpio/gpio-pca953x.c
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ MODULE_DEVICE_TABLE(acpi, pca953x_acpi_ids);
#define MAX_BANK 5
#define BANK_SZ 8

#define NBANK(chip) (chip->gpio_chip.ngpio / BANK_SZ)
#define NBANK(chip) DIV_ROUND_UP(chip->gpio_chip.ngpio, BANK_SZ)

struct pca953x_chip {
unsigned gpio_start;
Expand Down

0 comments on commit a246b81

Please sign in to comment.