aboutsummaryrefslogtreecommitdiff
path: root/arch/arm/oprofile
diff options
context:
space:
mode:
authorRussell King <rmk@dyn-67.arm.linux.org.uk>2006-03-20 16:52:32 +0000
committerRussell King <rmk+kernel@arm.linux.org.uk>2006-03-21 23:30:02 +0000
commit58e9ff56382bdce340d50b6ff22c422dc617106c (patch)
tree5cbe14561fe6be5d5a867ef860daf36f938dbdc0 /arch/arm/oprofile
parentae92dc9f7bc9018f1d043f102747a1f1e4dd96fb (diff)
[ARM] Use kcalloc to allocate counter_config array rather than kmalloc
We need this to be zero initialised. Since this is an array, use kcalloc rather than kzalloc or kmalloc. Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/oprofile')
-rw-r--r--arch/arm/oprofile/common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/oprofile/common.c b/arch/arm/oprofile/common.c
index de72902ad0c..6f833358cd0 100644
--- a/arch/arm/oprofile/common.c
+++ b/arch/arm/oprofile/common.c
@@ -140,7 +140,7 @@ int __init oprofile_arch_init(struct oprofile_operations *ops)
if (ret < 0)
return ret;
- counter_config = kmalloc(sizeof(struct op_counter_config) * spec->num_counters,
+ counter_config = kcalloc(spec->num_counters, sizeof(struct op_counter_config),
GFP_KERNEL);
if (!counter_config)
return -ENOMEM;