ALSA: compress: Remove unused variable
commit a931b9ce93841a5b66b709ba5a244276e345e63b upstream. Commit04c5d5a430("ALSA: compress: Embed struct device") removed the statement that used 'str' but didn't remove the variable itself. So remove it. [Adding stable to Cc since pr_debug() may refer to the uninitialized buffer -- tiwai] Fixes:04c5d5a430("ALSA: compress: Embed struct device") Signed-off-by: Guneshwor Singh <guneshwor.o.singh@intel.com> Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
88c195d638
commit
984b6c96f1
@@ -948,14 +948,13 @@ static const struct file_operations snd_compr_file_ops = {
|
|||||||
static int snd_compress_dev_register(struct snd_device *device)
|
static int snd_compress_dev_register(struct snd_device *device)
|
||||||
{
|
{
|
||||||
int ret = -EINVAL;
|
int ret = -EINVAL;
|
||||||
char str[16];
|
|
||||||
struct snd_compr *compr;
|
struct snd_compr *compr;
|
||||||
|
|
||||||
if (snd_BUG_ON(!device || !device->device_data))
|
if (snd_BUG_ON(!device || !device->device_data))
|
||||||
return -EBADFD;
|
return -EBADFD;
|
||||||
compr = device->device_data;
|
compr = device->device_data;
|
||||||
|
|
||||||
pr_debug("reg %s for device %s, direction %d\n", str, compr->name,
|
pr_debug("reg device %s, direction %d\n", compr->name,
|
||||||
compr->direction);
|
compr->direction);
|
||||||
/* register compressed device */
|
/* register compressed device */
|
||||||
ret = snd_register_device(SNDRV_DEVICE_TYPE_COMPRESS,
|
ret = snd_register_device(SNDRV_DEVICE_TYPE_COMPRESS,
|
||||||
|
|||||||
Reference in New Issue
Block a user