首页 > 系统服务 > 详细

ALSA 声卡 驱动 linux 4.1.36 中变化

时间:2017-05-14 17:37:57      阅读:417      评论:0      收藏:0      [点我收藏+]

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 中变化

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!