V4L/DVB (9622): tvaudio: Improve comments and remove a unneeded prototype

Some comments are not clear enough. Improve it to allow a better
understanding of the driver behavior.

While there, remove an unneeded struct prototype.

Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>

+7 -12
+7 -12
drivers/media/video/tvaudio.c
··· 106 106 int inputmute; 107 107 int inputmask; 108 108 }; 109 - static struct CHIPDESC chiplist[]; 110 109 111 110 /* current state of the chip */ 112 111 struct CHIPSTATE { ··· 1855 1856 case VIDIOC_S_FREQUENCY: 1856 1857 chip->mode = 0; /* automatic */ 1857 1858 1858 - /* For chips that provide getmode, setmode and checkmode, 1859 - a kthread is created to automatically to set the audio 1860 - standard. In this case, start with MONO and wait 2 seconds 1861 - for the decoding to stablize. Then, run kthread to change 1862 - to stereo, if carrier detected. 1859 + /* For chips that provide getmode and setmode, and doesn't 1860 + automatically follows the stereo carrier, a kthread is 1861 + created to set the audio standard. In this case, when then 1862 + the video channel is changed, tvaudio starts on MONO mode. 1863 + After waiting for 2 seconds, the kernel thread is called, 1864 + to follow whatever audio standard is pointed by the 1865 + audio carrier. 1863 1866 */ 1864 1867 if (chip->thread) { 1865 1868 desc->setmode(chip,V4L2_TUNER_MODE_MONO); ··· 1906 1905 .legacy_probe = chip_legacy_probe, 1907 1906 .id_table = chip_id, 1908 1907 }; 1909 - 1910 - /* 1911 - * Local variables: 1912 - * c-basic-offset: 8 1913 - * End: 1914 - */