mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
ALSA: fm801: convert struct description to kernel-doc
Just move field descriptions to the struct description in the kernel-doc format. There is no functional change. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
47c9807425
commit
052c233e98
1 changed files with 16 additions and 10 deletions
|
@ -158,21 +158,27 @@ MODULE_PARM_DESC(radio_nr, "Radio device numbers");
|
||||||
#define FM801_GPIO_GS3 (1<<15)
|
#define FM801_GPIO_GS3 (1<<15)
|
||||||
#define FM801_GPIO_GS(x) (1<<(12+(x)))
|
#define FM801_GPIO_GS(x) (1<<(12+(x)))
|
||||||
|
|
||||||
/*
|
/**
|
||||||
|
* struct fm801 - describes FM801 chip
|
||||||
|
* @port: I/O port number
|
||||||
|
* @multichannel: multichannel support
|
||||||
|
* @secondary: secondary codec
|
||||||
|
* @secondary_addr: address of the secondary codec
|
||||||
|
* @tea575x_tuner: tuner access method & flags
|
||||||
|
* @ply_ctrl: playback control
|
||||||
|
* @cap_ctrl: capture control
|
||||||
*/
|
*/
|
||||||
|
|
||||||
struct fm801 {
|
struct fm801 {
|
||||||
int irq;
|
int irq;
|
||||||
|
|
||||||
unsigned long port; /* I/O port number */
|
unsigned long port;
|
||||||
unsigned int multichannel: 1, /* multichannel support */
|
unsigned int multichannel: 1,
|
||||||
secondary: 1; /* secondary codec */
|
secondary: 1;
|
||||||
unsigned char secondary_addr; /* address of the secondary codec */
|
unsigned char secondary_addr;
|
||||||
unsigned int tea575x_tuner; /* tuner access method & flags */
|
unsigned int tea575x_tuner;
|
||||||
|
|
||||||
unsigned short ply_ctrl; /* playback control */
|
unsigned short ply_ctrl;
|
||||||
unsigned short cap_ctrl; /* capture control */
|
unsigned short cap_ctrl;
|
||||||
|
|
||||||
unsigned long ply_buffer;
|
unsigned long ply_buffer;
|
||||||
unsigned int ply_buf;
|
unsigned int ply_buf;
|
||||||
|
|
Loading…
Add table
Reference in a new issue