ALSA: line6: Tidy up and typo fixes in comments

Just reformatting the comments and typos fixed, no functional
changes.  Particularly,
- avoid the kerneldoc marker "/**",
- reduce multiple comment lines into single lines,
- corrected wrongly referred function names

Signed-off-by: Takashi Iwai <tiwai@suse.de>
Esse commit está contido em:
Takashi Iwai
2015-01-28 14:43:11 +01:00
commit cddbd4f170
8 arquivos alterados com 65 adições e 174 exclusões

Ver arquivo

@@ -58,44 +58,28 @@ enum {
};
struct usb_line6_pod {
/**
Generic Line 6 USB data.
*/
/* Generic Line 6 USB data */
struct usb_line6 line6;
/**
Instrument monitor level.
*/
/* Instrument monitor level */
int monitor_level;
/**
Timer for device initializaton.
*/
/* Timer for device initialization */
struct timer_list startup_timer;
/**
Work handler for device initializaton.
*/
/* Work handler for device initialization */
struct work_struct startup_work;
/**
Current progress in startup procedure.
*/
/* Current progress in startup procedure */
int startup_progress;
/**
Serial number of device.
*/
/* Serial number of device */
int serial_number;
/**
Firmware version (x 100).
*/
/* Firmware version (x 100) */
int firmware_version;
/**
Device ID.
*/
/* Device ID */
int device_id;
};