staging: bcm2835-audio: use kernel preferred block commenting style

Fix block comment formatting to suppress the following warning thrown by
checkpatch: Block comments use a trailing */ on a separate line

Signed-off-by: Aishwarya Pant <aishpant@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Aishwarya Pant 2017-03-03 00:26:41 +05:30 committed by Greg Kroah-Hartman
parent 01fb592f93
commit d812cd58c8

View file

@ -245,9 +245,10 @@ static int snd_bcm2835_spdif_mask_info(struct snd_kcontrol *kcontrol,
static int snd_bcm2835_spdif_mask_get(struct snd_kcontrol *kcontrol, static int snd_bcm2835_spdif_mask_get(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_value *ucontrol) struct snd_ctl_elem_value *ucontrol)
{ {
/* bcm2835 supports only consumer mode and sets all other format flags /*
* automatically. So the only thing left is signalling non-audio * bcm2835 supports only consumer mode and sets all other format flags
* content */ * automatically. So the only thing left is signalling non-audio content
*/
ucontrol->value.iec958.status[0] = IEC958_AES0_NONAUDIO; ucontrol->value.iec958.status[0] = IEC958_AES0_NONAUDIO;
return 0; return 0;
} }