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

Commit 786bef37 authored by Philipp Zabel's avatar Philipp Zabel Committed by Samuel Ortiz
Browse files

mfd: fix asic3 config array initialisation



Our memset length was incorrect.

Tested-by: default avatarPhilipp Zabel <philipp.zabel@gmail.com>
Signed-off-by: default avatarSamuel Ortiz <sameo@openedhand.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent 065032f6
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -473,9 +473,9 @@ static __init int asic3_gpio_probe(struct platform_device *pdev,
	u16 dir_reg[ASIC3_NUM_GPIO_BANKS];
	u16 dir_reg[ASIC3_NUM_GPIO_BANKS];
	int i;
	int i;


	memset(alt_reg, 0, ASIC3_NUM_GPIO_BANKS);
	memzero(alt_reg, ASIC3_NUM_GPIO_BANKS * sizeof(u16));
	memset(out_reg, 0, ASIC3_NUM_GPIO_BANKS);
	memzero(out_reg, ASIC3_NUM_GPIO_BANKS * sizeof(u16));
	memset(dir_reg, 0, ASIC3_NUM_GPIO_BANKS);
	memzero(dir_reg, ASIC3_NUM_GPIO_BANKS * sizeof(u16));


	/* Enable all GPIOs */
	/* Enable all GPIOs */
	asic3_write_register(asic, ASIC3_GPIO_OFFSET(A, MASK), 0xffff);
	asic3_write_register(asic, ASIC3_GPIO_OFFSET(A, MASK), 0xffff);