]> Git Repo - qemu.git/blobdiff - target-mips/dsp_helper.c
exec: Return RAMBlock pointer from allocating functions
[qemu.git] / target-mips / dsp_helper.c
index 349f2a00330744bf1a550d508b0938f2b8b10748..df7d2204b019189c5d0bc93ac3d59b38f373cfbc 100644 (file)
@@ -17,6 +17,7 @@
  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
  */
 
+#include "qemu/osdep.h"
 #include "cpu.h"
 #include "exec/helper-proto.h"
 #include "qemu/bitops.h"
@@ -3678,7 +3679,7 @@ void cpu_wrdsp(uint32_t rs, uint32_t mask_num, CPUMIPSState *env)
 
 void helper_wrdsp(target_ulong rs, target_ulong mask_num, CPUMIPSState *env)
 {
-    return cpu_wrdsp(rs, mask_num, env);
+    cpu_wrdsp(rs, mask_num, env);
 }
 
 uint32_t cpu_rddsp(uint32_t mask_num, CPUMIPSState *env)
This page took 0.023141 seconds and 4 git commands to generate.