12 Jun
2015
12 Jun
'15
3:37 p.m.
-----Original Message----- From: Mark Brown [mailto:broonie@kernel.org] Sent: Friday, June 12, 2015 8:15 PM To: Jie, Yang Cc: tiwai@suse.de; alsa-devel@alsa-project.org; Girdwood, Liam R; vinod.koul@linux.intel.com; ramesh.babu@linux.intel.com; Zhang, Vivian Subject: Re: [PATCH 2/2] ASoC: soc-compress: split soc-compress to a module
On Fri, Jun 12, 2015 at 07:59:16PM +0800, Jie Yang wrote:
+static int __init soc_compress_init(void) {
return 0;
+} +module_init(soc_compress_init);
+static void __exit soc_compress_exit(void) { } +module_exit(soc_compress_exit);
These are completely empty, why are they being added?
I imitated that from sound/core/compress_offload.c, let me remove them.
~Keyon