hc
2024-10-22 8ac6c7a54ed1b98d142dce24b11c6de6a1e239a5
kernel/arch/alpha/oprofile/common.c
....@@ -65,7 +65,7 @@
6565 model->reg_setup(&reg, ctr, &sys);
6666
6767 /* Configure the registers on all cpus. */
68
- (void)smp_call_function(model->cpu_setup, &reg, 1);
68
+ smp_call_function(model->cpu_setup, &reg, 1);
6969 model->cpu_setup(&reg);
7070 return 0;
7171 }
....@@ -86,7 +86,7 @@
8686 static int
8787 op_axp_start(void)
8888 {
89
- (void)smp_call_function(op_axp_cpu_start, NULL, 1);
89
+ smp_call_function(op_axp_cpu_start, NULL, 1);
9090 op_axp_cpu_start(NULL);
9191 return 0;
9292 }
....@@ -101,7 +101,7 @@
101101 static void
102102 op_axp_stop(void)
103103 {
104
- (void)smp_call_function(op_axp_cpu_stop, NULL, 1);
104
+ smp_call_function(op_axp_cpu_stop, NULL, 1);
105105 op_axp_cpu_stop(NULL);
106106 }
107107