diff options
author | Jesper Juhl <jesper.juhl@gmail.com> | 2007-08-23 19:40:26 -0400 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2007-09-01 05:48:45 -0400 |
commit | 1aac0b5739ae192ee812eee09625ebfc08c2d760 (patch) | |
tree | 72a1bf07f1e065cb7e54a22afb734612711f5c5d /arch/ia64/sn | |
parent | f740e6c9c55cac6ab0a7d44a464b54467cca4f4f (diff) |
[IA64] Remove unnecessary cast of allocation return value in sn_hwperf_enum_objects()
vmalloc() returns a void pointer - no need to cast it.
Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/ia64/sn')
-rw-r--r-- | arch/ia64/sn/kernel/sn2/sn_hwperf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/ia64/sn/kernel/sn2/sn_hwperf.c b/arch/ia64/sn/kernel/sn2/sn_hwperf.c index df8d5bed6119..1a8e49607f11 100644 --- a/arch/ia64/sn/kernel/sn2/sn_hwperf.c +++ b/arch/ia64/sn/kernel/sn2/sn_hwperf.c | |||
@@ -66,7 +66,8 @@ static int sn_hwperf_enum_objects(int *nobj, struct sn_hwperf_object_info **ret) | |||
66 | } | 66 | } |
67 | 67 | ||
68 | sz = sn_hwperf_obj_cnt * sizeof(struct sn_hwperf_object_info); | 68 | sz = sn_hwperf_obj_cnt * sizeof(struct sn_hwperf_object_info); |
69 | if ((objbuf = (struct sn_hwperf_object_info *) vmalloc(sz)) == NULL) { | 69 | objbuf = vmalloc(sz); |
70 | if (objbuf == NULL) { | ||
70 | printk("sn_hwperf_enum_objects: vmalloc(%d) failed\n", (int)sz); | 71 | printk("sn_hwperf_enum_objects: vmalloc(%d) failed\n", (int)sz); |
71 | e = -ENOMEM; | 72 | e = -ENOMEM; |
72 | goto out; | 73 | goto out; |