[ALSA] fix comments in sound/core.h
Two sentences seem to be spliced into one in comment, fix that and fix english. Also fix codingstyle. Signed-off-by: Pavel Machek <pavel@suse.cz> Signed-off-by: Jaroslav Kysela <perex@perex.cz> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
e97f79994a
commit
edab938e63
|
@ -310,7 +310,7 @@ int snd_card_file_add(struct snd_card *card, struct file *file);
|
||||||
int snd_card_file_remove(struct snd_card *card, struct file *file);
|
int snd_card_file_remove(struct snd_card *card, struct file *file);
|
||||||
|
|
||||||
#ifndef snd_card_set_dev
|
#ifndef snd_card_set_dev
|
||||||
#define snd_card_set_dev(card,devptr) ((card)->dev = (devptr))
|
#define snd_card_set_dev(card, devptr) ((card)->dev = (devptr))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* device.c */
|
/* device.c */
|
||||||
|
@ -373,7 +373,7 @@ void snd_verbose_printd(const char *file, int line, const char *format, ...)
|
||||||
* snd_printd - debug printk
|
* snd_printd - debug printk
|
||||||
* @fmt: format string
|
* @fmt: format string
|
||||||
*
|
*
|
||||||
* Compiled only when Works like snd_printk() for debugging purpose.
|
* Works like snd_printk() for debugging purposes.
|
||||||
* Ignored when CONFIG_SND_DEBUG is not set.
|
* Ignored when CONFIG_SND_DEBUG is not set.
|
||||||
*/
|
*/
|
||||||
#define snd_printd(fmt, args...) \
|
#define snd_printd(fmt, args...) \
|
||||||
|
@ -417,7 +417,7 @@ void snd_verbose_printd(const char *file, int line, const char *format, ...)
|
||||||
* snd_printdd - debug printk
|
* snd_printdd - debug printk
|
||||||
* @format: format string
|
* @format: format string
|
||||||
*
|
*
|
||||||
* Compiled only when Works like snd_printk() for debugging purpose.
|
* Works like snd_printk() for debugging purposes.
|
||||||
* Ignored when CONFIG_SND_DEBUG_DETECT is not set.
|
* Ignored when CONFIG_SND_DEBUG_DETECT is not set.
|
||||||
*/
|
*/
|
||||||
#define snd_printdd(format, args...) snd_printk(format, ##args)
|
#define snd_printdd(format, args...) snd_printk(format, ##args)
|
||||||
|
|
Loading…
Reference in New Issue