[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <0f9e36f1-2cc7-d9e2-8d35-985b409d9e3a@linux.intel.com>
Date: Tue, 14 Jan 2020 12:55:31 -0600
From: Pierre-Louis Bossart <pierre-louis.bossart@...ux.intel.com>
To: Vinod Koul <vkoul@...nel.org>
Cc: alsa-devel@...a-project.org, linux-kernel@...r.kernel.org,
tiwai@...e.de, broonie@...nel.org, gregkh@...uxfoundation.org,
jank@...ence.com, srinivas.kandagatla@...aro.org,
slawomir.blauciak@...el.com,
Bard liao <yung-chuan.liao@...ux.intel.com>,
Rander Wang <rander.wang@...ux.intel.com>,
Ranjani Sridharan <ranjani.sridharan@...ux.intel.com>,
Sanyog Kale <sanyog.r.kale@...el.com>
Subject: Re: [alsa-devel] [PATCH 4/5] soundwire: intel: add sdw_stream_setup
helper for .startup callback
>> + name = kzalloc(32, GFP_KERNEL);
>> + if (!name)
>> + return -ENOMEM;
>> +
>> + if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
>> + snprintf(name, 32, "%s-Playback", dai->name);
>> + else
>> + snprintf(name, 32, "%s-Capture", dai->name);
>
> How about use DAI_SIZE instead of 32 here and above few places? Lets not
> code number like this please
Yes, thanks for spotting this. kasprintf seems like a better solution I
guess, will send a v2.
Powered by blists - more mailing lists