Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fffa6af9 authored by Thierry Reding's avatar Thierry Reding Committed by Linus Walleij
Browse files

gpio: max77620: Use correct unit for debounce times



The gpiod_set_debounce() function takes the debounce time in
microseconds. Adjust the switch/case values in the MAX77620 GPIO to use
the correct unit.

Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
Link: https://lore.kernel.org/r/20191002122825.3948322-1-thierry.reding@gmail.com


Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent b8cd253a
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -192,13 +192,13 @@ static int max77620_gpio_set_debounce(struct max77620_gpio *mgpio,
	case 0:
		val = MAX77620_CNFG_GPIO_DBNC_None;
		break;
	case 1 ... 8:
	case 1000 ... 8000:
		val = MAX77620_CNFG_GPIO_DBNC_8ms;
		break;
	case 9 ... 16:
	case 9000 ... 16000:
		val = MAX77620_CNFG_GPIO_DBNC_16ms;
		break;
	case 17 ... 32:
	case 17000 ... 32000:
		val = MAX77620_CNFG_GPIO_DBNC_32ms;
		break;
	default: