12 May
2020
12 May
'20
12:37 a.m.
+static int acp_pdm_hw_params(struct snd_pcm_substream *substream,
struct snd_pcm_hw_params *hw_params)
+{
- return 0;
+}
is this needed?
+static struct snd_soc_ops acp_pdm_ops = {
- .hw_params = acp_pdm_hw_params,
+};
+static int acp_init(struct snd_soc_pcm_runtime *rtd) +{
- return 0;
+}
is this needed?
+static struct platform_driver acp_mach_driver = {
- .driver = {
.name = "acp_pdm_mach",
.pm = &snd_soc_pm_ops,
- },
- .probe = acp_probe,
+};
+static int __init acp_audio_init(void) +{
- platform_driver_register(&acp_mach_driver);
- return 0;
+}
+static void __exit acp_audio_exit(void) +{
- platform_driver_unregister(&acp_mach_driver);
+}
+module_init(acp_audio_init); +module_exit(acp_audio_exit);
use module_platform_driver() - was already feedback on v1...