projects
/
GitHub
/
MotorolaMobilityLLC
/
kernel-slsi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
065032f
)
mfd: fix asic3 config array initialisation
author
Philipp Zabel
<philipp.zabel@gmail.com>
Mon, 23 Jun 2008 23:31:24 +0000
(
01:31
+0200)
committer
Samuel Ortiz
<samuel@sortiz.org>
Sun, 20 Jul 2008 17:55:44 +0000
(19:55 +0200)
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>
drivers/mfd/asic3.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/mfd/asic3.c
b/drivers/mfd/asic3.c
index 80dc3334e82f73c5727ed388176c58764e63088a..50c773c4d60adf34582b84cffc82a9690bc41542 100644
(file)
--- a/
drivers/mfd/asic3.c
+++ b/
drivers/mfd/asic3.c
@@
-473,9
+473,9
@@
static __init int asic3_gpio_probe(struct platform_device *pdev,
u16 dir_reg[ASIC3_NUM_GPIO_BANKS];
int i;
- mem
set(alt_reg, 0, ASIC3_NUM_GPIO_BANKS
);
- mem
set(out_reg, 0, ASIC3_NUM_GPIO_BANKS
);
- mem
set(dir_reg, 0, ASIC3_NUM_GPIO_BANKS
);
+ mem
zero(alt_reg, ASIC3_NUM_GPIO_BANKS * sizeof(u16)
);
+ mem
zero(out_reg, ASIC3_NUM_GPIO_BANKS * sizeof(u16)
);
+ mem
zero(dir_reg, ASIC3_NUM_GPIO_BANKS * sizeof(u16)
);
/* Enable all GPIOs */
asic3_write_register(asic, ASIC3_GPIO_OFFSET(A, MASK), 0xffff);