diff options
author | Philipp Zabel <philipp.zabel@gmail.com> | 2008-06-23 19:31:24 -0400 |
---|---|---|
committer | Samuel Ortiz <samuel@sortiz.org> | 2008-07-20 13:55:44 -0400 |
commit | 786bef3768a6ea1070526983b20e316c4eacd854 (patch) | |
tree | 7f45d10e687aa8267b4d1102c3a73a8124e13c06 /drivers/mfd | |
parent | 065032f61bd9acdb843766da3149de12eaf87c0b (diff) |
mfd: fix asic3 config array initialisation
Our memset length was incorrect.
Tested-by: Philipp Zabel <philipp.zabel@gmail.com>
Signed-off-by: Samuel Ortiz <sameo@openedhand.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'drivers/mfd')
-rw-r--r-- | drivers/mfd/asic3.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/mfd/asic3.c b/drivers/mfd/asic3.c index 80dc3334e82f..50c773c4d60a 100644 --- a/drivers/mfd/asic3.c +++ b/drivers/mfd/asic3.c | |||
@@ -473,9 +473,9 @@ static __init int asic3_gpio_probe(struct platform_device *pdev, | |||
473 | u16 dir_reg[ASIC3_NUM_GPIO_BANKS]; | 473 | u16 dir_reg[ASIC3_NUM_GPIO_BANKS]; |
474 | int i; | 474 | int i; |
475 | 475 | ||
476 | memset(alt_reg, 0, ASIC3_NUM_GPIO_BANKS); | 476 | memzero(alt_reg, ASIC3_NUM_GPIO_BANKS * sizeof(u16)); |
477 | memset(out_reg, 0, ASIC3_NUM_GPIO_BANKS); | 477 | memzero(out_reg, ASIC3_NUM_GPIO_BANKS * sizeof(u16)); |
478 | memset(dir_reg, 0, ASIC3_NUM_GPIO_BANKS); | 478 | memzero(dir_reg, ASIC3_NUM_GPIO_BANKS * sizeof(u16)); |
479 | 479 | ||
480 | /* Enable all GPIOs */ | 480 | /* Enable all GPIOs */ |
481 | asic3_write_register(asic, ASIC3_GPIO_OFFSET(A, MASK), 0xffff); | 481 | asic3_write_register(asic, ASIC3_GPIO_OFFSET(A, MASK), 0xffff); |