mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-30 23:54:04 +08:00
Merge branch 'topic/asoc' into for-linus
* topic/asoc: ASoC: Kill BUS_ID_SIZE
This commit is contained in:
commit
9fd0d96e79
@ -297,9 +297,9 @@ static int txx9aclc_pcm_new(struct snd_card *card, struct snd_soc_dai *dai,
|
||||
static bool filter(struct dma_chan *chan, void *param)
|
||||
{
|
||||
struct txx9aclc_dmadata *dmadata = param;
|
||||
char devname[BUS_ID_SIZE + 2];
|
||||
char devname[20 + 2]; /* FIXME: old BUS_ID_SIZE + 2 */
|
||||
|
||||
sprintf(devname, "%s.%d", dmadata->dma_res->name,
|
||||
snprintf(devname, sizeof(devname), "%s.%d", dmadata->dma_res->name,
|
||||
(int)dmadata->dma_res->start);
|
||||
if (strcmp(dev_name(chan->device->dev), devname) == 0) {
|
||||
chan->private = &dmadata->dma_slave;
|
||||
|
Loading…
Reference in New Issue
Block a user