Browse Source

Merge "rtac: Fix return value of misc_register in init"

Linux Build Service Account 7 years ago
parent
commit
42eac9c48e
1 changed files with 3 additions and 0 deletions
  1. 3 0
      dsp/rtac.c

+ 3 - 0
dsp/rtac.c

@@ -2051,7 +2051,10 @@ int __init rtac_init(void)
 		kzfree(rtac_asm_buffer);
 		kzfree(rtac_afe_buffer);
 		kzfree(rtac_voice_buffer);
+		goto nomem;
 	}
+
+	return 0;
 nomem:
 	return -ENOMEM;
 }