Skip to content

Commit d376231

Browse files
William Breathitt GrayBartosz Golaszewski
authored andcommitted
gpio: pci-idio-16: Define maximum valid register address offset
Attempting to load the pci-idio-16 module fails during regmap initialization with a return error -EINVAL. This is a result of the regmap cache failing initialization. Set the idio_16_regmap_config max_register member to fix this failure. Fixes: 73d8f3e ("gpio: pci-idio-16: Migrate to the regmap API") Reported-by: Mark Cave-Ayland <mark.caveayland@nutanix.com> Closes: https://lore.kernel.org/r/9b0375fd-235f-4ee1-a7fa-daca296ef6bf@nutanix.com Suggested-by: Mark Cave-Ayland <mark.caveayland@nutanix.com> Cc: stable@vger.kernel.org Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: William Breathitt Gray <wbg@kernel.org> Reviewed-by: Linus Walleij <linus.walleij@linaro.org> Link: https://lore.kernel.org/r/20251020-fix-gpio-idio-16-regmap-v2-2-ebeb50e93c33@kernel.org Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
1 parent c4d35e6 commit d376231

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

drivers/gpio/gpio-pci-idio-16.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ static const struct regmap_config idio_16_regmap_config = {
4141
.reg_stride = 1,
4242
.val_bits = 8,
4343
.io_port = true,
44+
.max_register = 0x7,
4445
.wr_table = &idio_16_wr_table,
4546
.rd_table = &idio_16_rd_table,
4647
.volatile_table = &idio_16_rd_table,

0 commit comments

Comments
 (0)