码迷,mamicode.com
首页 > 系统相关 > 详细

ALSA 声卡 驱动 linux 4.1.36 中变化

时间:2017-05-14 17:58:12      阅读:480      评论:0      收藏:0      [点我收藏+]

标签:img   lsa   stream   分享   ati   ges   log   substr   reg   

linux 4.1.36 中变化
ret = request_irq(IRQ_DMA2, s3c2440_dma2_irq, IRQF_DISABLED, "myalsa for playback", substream);

IRQF_DISABLED 换为 IRQF_TRIGGER_NONE

snd_soc_register_dai(&pdev->dev, &s3c2440_i2s_dai);
换为
static const struct snd_soc_component_driver s3c2440_i2s_component = {    
    .name = "s3c2440-iis",
};

ret = devm_snd_soc_register_component(&pdev->dev, &s3c2440_i2s_component, &s3c2440_i2s_dai, 1);    
    
附上驱动成功的图

技术分享

 

ALSA 声卡 驱动 linux 4.1.36 中变化

标签:img   lsa   stream   分享   ati   ges   log   substr   reg   

原文地址:http://www.cnblogs.com/ningci/p/6852982.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!