projects
/
GitHub
/
LineageOS
/
android_kernel_samsung_universal7580.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
33745fb
)
ASoC: Kill BUS_ID_SIZE
author
Takashi Iwai
<tiwai@suse.de>
Wed, 17 Jun 2009 09:42:45 +0000
(11:42 +0200)
committer
Takashi Iwai
<tiwai@suse.de>
Wed, 17 Jun 2009 09:42:45 +0000
(11:42 +0200)
Remove the use of BUS_ID_SIZE from txx9aclc.c, as BUS_ID_SIZE will be
removed soon later.
Also, use snprintf() instead of sprintf() as a safer operation.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/soc/txx9/txx9aclc.c
patch
|
blob
|
blame
|
history
diff --git
a/sound/soc/txx9/txx9aclc.c
b/sound/soc/txx9/txx9aclc.c
index fa336616152e51a9c03a449dd51a629fa3da24bf..938a58a5a244c1d75c43ed969e3c14b64fb08bb1 100644
(file)
--- a/
sound/soc/txx9/txx9aclc.c
+++ b/
sound/soc/txx9/txx9aclc.c
@@
-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 */
- s
printf(devname
, "%s.%d", dmadata->dma_res->name,
+ s
nprintf(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;