diff options
| author | Art Haas <ahaas@airmail.net> | 2002-12-01 04:19:33 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.transmeta.com> | 2002-12-01 04:19:33 -0800 |
| commit | bcbcf54d5b7c3c5f2fea4ef48308508560de7229 (patch) | |
| tree | a7999e128893ce06902cc12c22ed3b7590547f0a | |
| parent | c61843a83b577bcf039880120890ef66e42d4fab (diff) | |
[PATCH] C99 initializers for drivers/media/radio
| -rw-r--r-- | drivers/media/radio/miropcm20-radio.c | 27 | ||||
| -rw-r--r-- | drivers/media/radio/miropcm20-rds.c | 8 | ||||
| -rw-r--r-- | drivers/media/radio/radio-aimslab.c | 20 | ||||
| -rw-r--r-- | drivers/media/radio/radio-aztech.c | 20 | ||||
| -rw-r--r-- | drivers/media/radio/radio-cadet.c | 22 | ||||
| -rw-r--r-- | drivers/media/radio/radio-gemtek-pci.c | 28 | ||||
| -rw-r--r-- | drivers/media/radio/radio-gemtek.c | 20 | ||||
| -rw-r--r-- | drivers/media/radio/radio-maestro.c | 20 | ||||
| -rw-r--r-- | drivers/media/radio/radio-maxiradio.c | 28 | ||||
| -rw-r--r-- | drivers/media/radio/radio-rtrack2.c | 20 | ||||
| -rw-r--r-- | drivers/media/radio/radio-sf16fmi.c | 20 | ||||
| -rw-r--r-- | drivers/media/radio/radio-terratec.c | 20 | ||||
| -rw-r--r-- | drivers/media/radio/radio-trust.c | 20 | ||||
| -rw-r--r-- | drivers/media/radio/radio-typhoon.c | 26 | ||||
| -rw-r--r-- | drivers/media/radio/radio-zoltrix.c | 20 |
15 files changed, 159 insertions, 160 deletions
diff --git a/drivers/media/radio/miropcm20-radio.c b/drivers/media/radio/miropcm20-radio.c index b31ba21db6ed..743e79a891c2 100644 --- a/drivers/media/radio/miropcm20-radio.c +++ b/drivers/media/radio/miropcm20-radio.c @@ -217,26 +217,25 @@ static int pcm20_ioctl(struct inode *inode, struct file *file, } static struct pcm20_device pcm20_unit = { - freq: 87*16000, - muted: 1, - stereo: 0 + .freq = 87*16000, + .muted = 1, }; static struct file_operations pcm20_fops = { - owner: THIS_MODULE, - open: video_exclusive_open, - release: video_exclusive_release, - ioctl: pcm20_ioctl, - llseek: no_llseek, + .owner = THIS_MODULE, + .open = video_exclusive_open, + .release = video_exclusive_release, + .ioctl = pcm20_ioctl, + .llseek = no_llseek, }; static struct video_device pcm20_radio = { - owner: THIS_MODULE, - name: "Miro PCM 20 radio", - type: VID_TYPE_TUNER, - hardware: VID_HARDWARE_RTRACK, - fops: &pcm20_fops, - priv: &pcm20_unit + .owner = THIS_MODULE, + .name = "Miro PCM 20 radio", + .type = VID_TYPE_TUNER, + .hardware = VID_HARDWARE_RTRACK, + .fops = &pcm20_fops, + .priv = &pcm20_unit }; static int __init pcm20_init(void) diff --git a/drivers/media/radio/miropcm20-rds.c b/drivers/media/radio/miropcm20-rds.c index 417115be2a0c..de795705ede2 100644 --- a/drivers/media/radio/miropcm20-rds.c +++ b/drivers/media/radio/miropcm20-rds.c @@ -105,10 +105,10 @@ static ssize_t rds_f_read(struct file *file, char *buffer, size_t length, loff_t } static struct file_operations rds_f_ops = { - owner: THIS_MODULE, - read: rds_f_read, - open: rds_f_open, - release: rds_f_release + .owner = THIS_MODULE, + .read = rds_f_read, + .open = rds_f_open, + .release = rds_f_release }; diff --git a/drivers/media/radio/radio-aimslab.c b/drivers/media/radio/radio-aimslab.c index d9c1906f93a3..1929f369d3bd 100644 --- a/drivers/media/radio/radio-aimslab.c +++ b/drivers/media/radio/radio-aimslab.c @@ -300,20 +300,20 @@ static int rt_ioctl(struct inode *inode, struct file *file, static struct rt_device rtrack_unit; static struct file_operations rtrack_fops = { - owner: THIS_MODULE, - open: video_exclusive_open, - release: video_exclusive_release, - ioctl: rt_ioctl, - llseek: no_llseek, + .owner = THIS_MODULE, + .open = video_exclusive_open, + .release = video_exclusive_release, + .ioctl = rt_ioctl, + .llseek = no_llseek, }; static struct video_device rtrack_radio= { - owner: THIS_MODULE, - name: "RadioTrack radio", - type: VID_TYPE_TUNER, - hardware: VID_HARDWARE_RTRACK, - fops: &rtrack_fops, + .owner = THIS_MODULE, + .name = "RadioTrack radio", + .type = VID_TYPE_TUNER, + .hardware = VID_HARDWARE_RTRACK, + .fops = &rtrack_fops, }; static int __init rtrack_init(void) diff --git a/drivers/media/radio/radio-aztech.c b/drivers/media/radio/radio-aztech.c index 6ea87a0ecf35..e23e3d5f437e 100644 --- a/drivers/media/radio/radio-aztech.c +++ b/drivers/media/radio/radio-aztech.c @@ -252,20 +252,20 @@ static int az_ioctl(struct inode *inode, struct file *file, static struct az_device aztech_unit; static struct file_operations aztech_fops = { - owner: THIS_MODULE, - open: video_exclusive_open, - release: video_exclusive_release, - ioctl: az_ioctl, - llseek: no_llseek, + .owner = THIS_MODULE, + .open = video_exclusive_open, + .release = video_exclusive_release, + .ioctl = az_ioctl, + .llseek = no_llseek, }; static struct video_device aztech_radio= { - owner: THIS_MODULE, - name: "Aztech radio", - type: VID_TYPE_TUNER, - hardware: VID_HARDWARE_AZTECH, - fops: &aztech_fops, + .owner = THIS_MODULE, + .name = "Aztech radio", + .type = VID_TYPE_TUNER, + .hardware = VID_HARDWARE_AZTECH, + .fops = &aztech_fops, }; static int __init aztech_init(void) diff --git a/drivers/media/radio/radio-cadet.c b/drivers/media/radio/radio-cadet.c index 01f99af1846a..8a2de2bb471c 100644 --- a/drivers/media/radio/radio-cadet.c +++ b/drivers/media/radio/radio-cadet.c @@ -524,21 +524,21 @@ static int cadet_release(struct inode *inode, struct file *file) static struct file_operations cadet_fops = { - owner: THIS_MODULE, - open: cadet_open, - release: cadet_release, - read: cadet_read, - ioctl: cadet_ioctl, - llseek: no_llseek, + .owner = THIS_MODULE, + .open = cadet_open, + .release = cadet_release, + .read = cadet_read, + .ioctl = cadet_ioctl, + .llseek = no_llseek, }; static struct video_device cadet_radio= { - owner: THIS_MODULE, - name: "Cadet radio", - type: VID_TYPE_TUNER, - hardware: VID_HARDWARE_CADET, - fops: &cadet_fops, + .owner = THIS_MODULE, + .name = "Cadet radio", + .type = VID_TYPE_TUNER, + .hardware = VID_HARDWARE_CADET, + .fops = &cadet_fops, }; static int isapnp_cadet_probe(void) diff --git a/drivers/media/radio/radio-gemtek-pci.c b/drivers/media/radio/radio-gemtek-pci.c index 47540dba68de..a1b359a05d15 100644 --- a/drivers/media/radio/radio-gemtek-pci.c +++ b/drivers/media/radio/radio-gemtek-pci.c @@ -298,19 +298,19 @@ MODULE_DEVICE_TABLE( pci, gemtek_pci_id ); static u8 mx = 1; static struct file_operations gemtek_pci_fops = { - owner: THIS_MODULE, - open: video_exclusive_open, - release: video_exclusive_release, - ioctl: gemtek_pci_ioctl, - llseek: no_llseek, + .owner = THIS_MODULE, + .open = video_exclusive_open, + .release = video_exclusive_release, + .ioctl = gemtek_pci_ioctl, + .llseek = no_llseek, }; static struct video_device vdev_template = { - owner: THIS_MODULE, - name: "Gemtek PCI Radio", - type: VID_TYPE_TUNER, - hardware: VID_HARDWARE_GEMTEK, - fops: &gemtek_pci_fops, + .owner = THIS_MODULE, + .name = "Gemtek PCI Radio", + .type = VID_TYPE_TUNER, + .hardware = VID_HARDWARE_GEMTEK, + .fops = &gemtek_pci_fops, }; static int __devinit gemtek_pci_probe( struct pci_dev *pci_dev, const struct pci_device_id *pci_id ) @@ -387,10 +387,10 @@ static void __devexit gemtek_pci_remove( struct pci_dev *pci_dev ) static struct pci_driver gemtek_pci_driver = { - name: "gemtek_pci", -id_table: gemtek_pci_id, - probe: gemtek_pci_probe, - remove: __devexit_p(gemtek_pci_remove), + .name = "gemtek_pci", + .id_table = gemtek_pci_id, + .probe = gemtek_pci_probe, + .remove = __devexit_p(gemtek_pci_remove), }; static int __init gemtek_pci_init_module( void ) diff --git a/drivers/media/radio/radio-gemtek.c b/drivers/media/radio/radio-gemtek.c index a502dbac3957..7a57b7cecb79 100644 --- a/drivers/media/radio/radio-gemtek.c +++ b/drivers/media/radio/radio-gemtek.c @@ -229,20 +229,20 @@ static int gemtek_ioctl(struct inode *inode, struct file *file, static struct gemtek_device gemtek_unit; static struct file_operations gemtek_fops = { - owner: THIS_MODULE, - open: video_exclusive_open, - release: video_exclusive_release, - ioctl: gemtek_ioctl, - llseek: no_llseek, + .owner = THIS_MODULE, + .open = video_exclusive_open, + .release = video_exclusive_release, + .ioctl = gemtek_ioctl, + .llseek = no_llseek, }; static struct video_device gemtek_radio= { - owner: THIS_MODULE, - name: "GemTek radio", - type: VID_TYPE_TUNER, - hardware: VID_HARDWARE_GEMTEK, - fops: &gemtek_fops, + .owner = THIS_MODULE, + .name = "GemTek radio", + .type = VID_TYPE_TUNER, + .hardware = VID_HARDWARE_GEMTEK, + .fops = &gemtek_fops, }; static int __init gemtek_init(void) diff --git a/drivers/media/radio/radio-maestro.c b/drivers/media/radio/radio-maestro.c index 3c5892289e71..a675e86daa54 100644 --- a/drivers/media/radio/radio-maestro.c +++ b/drivers/media/radio/radio-maestro.c @@ -68,20 +68,20 @@ static int radio_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg); static struct file_operations maestro_fops = { - owner: THIS_MODULE, - open: video_exclusive_open, - release: video_exclusive_release, - ioctl: radio_ioctl, - llseek: no_llseek, + .owner = THIS_MODULE, + .open = video_exclusive_open, + .release = video_exclusive_release, + .ioctl = radio_ioctl, + .llseek = no_llseek, }; static struct video_device maestro_radio= { - owner: THIS_MODULE, - name: "Maestro radio", - type: VID_TYPE_TUNER, - hardware: VID_HARDWARE_SF16MI, - fops: &maestro_fops, + .owner = THIS_MODULE, + .name = "Maestro radio", + .type = VID_TYPE_TUNER, + .hardware = VID_HARDWARE_SF16MI, + .fops = &maestro_fops, }; static struct radio_device diff --git a/drivers/media/radio/radio-maxiradio.c b/drivers/media/radio/radio-maxiradio.c index 16ebd078a06e..8830f0aaf6b1 100644 --- a/drivers/media/radio/radio-maxiradio.c +++ b/drivers/media/radio/radio-maxiradio.c @@ -76,19 +76,19 @@ static int radio_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg); static struct file_operations maxiradio_fops = { - owner: THIS_MODULE, - open: video_exclusive_open, - release: video_exclusive_release, - ioctl: radio_ioctl, - llseek: no_llseek, + .owner = THIS_MODULE, + .open = video_exclusive_open, + .release = video_exclusive_release, + .ioctl = radio_ioctl, + .llseek = no_llseek, }; static struct video_device maxiradio_radio = { - owner: THIS_MODULE, - name: "Maxi Radio FM2000 radio", - type: VID_TYPE_TUNER, - hardware: VID_HARDWARE_SF16MI, - fops: &maxiradio_fops, + .owner = THIS_MODULE, + .name = "Maxi Radio FM2000 radio", + .type = VID_TYPE_TUNER, + .hardware = VID_HARDWARE_SF16MI, + .fops = &maxiradio_fops, }; static struct radio_device @@ -336,10 +336,10 @@ static struct pci_device_id maxiradio_pci_tbl[] __devinitdata = { MODULE_DEVICE_TABLE(pci, maxiradio_pci_tbl); static struct pci_driver maxiradio_driver = { - name: "radio-maxiradio", - id_table: maxiradio_pci_tbl, - probe: maxiradio_init_one, - remove: __devexit_p(maxiradio_remove_one), + .name = "radio-maxiradio", + .id_table = maxiradio_pci_tbl, + .probe = maxiradio_init_one, + .remove = __devexit_p(maxiradio_remove_one), }; int __init maxiradio_radio_init(void) diff --git a/drivers/media/radio/radio-rtrack2.c b/drivers/media/radio/radio-rtrack2.c index 8ec9cbcfd571..8e6fe4d268cc 100644 --- a/drivers/media/radio/radio-rtrack2.c +++ b/drivers/media/radio/radio-rtrack2.c @@ -195,20 +195,20 @@ static int rt_ioctl(struct inode *inode, struct file *file, static struct rt_device rtrack2_unit; static struct file_operations rtrack2_fops = { - owner: THIS_MODULE, - open: video_exclusive_open, - release: video_exclusive_release, - ioctl: rt_ioctl, - llseek: no_llseek, + .owner = THIS_MODULE, + .open = video_exclusive_open, + .release = video_exclusive_release, + .ioctl = rt_ioctl, + .llseek = no_llseek, }; static struct video_device rtrack2_radio= { - owner: THIS_MODULE, - name: "RadioTrack II radio", - type: VID_TYPE_TUNER, - hardware: VID_HARDWARE_RTRACK2, - fops: &rtrack2_fops, + .owner = THIS_MODULE, + .name = "RadioTrack II radio", + .type = VID_TYPE_TUNER, + .hardware = VID_HARDWARE_RTRACK2, + .fops = &rtrack2_fops, }; static int __init rtrack2_init(void) diff --git a/drivers/media/radio/radio-sf16fmi.c b/drivers/media/radio/radio-sf16fmi.c index c227a24c2b1c..53c8509ba8f2 100644 --- a/drivers/media/radio/radio-sf16fmi.c +++ b/drivers/media/radio/radio-sf16fmi.c @@ -223,20 +223,20 @@ static int fmi_ioctl(struct inode *inode, struct file *file, static struct fmi_device fmi_unit; static struct file_operations fmi_fops = { - owner: THIS_MODULE, - open: video_exclusive_open, - release: video_exclusive_release, - ioctl: fmi_ioctl, - llseek: no_llseek, + .owner = THIS_MODULE, + .open = video_exclusive_open, + .release = video_exclusive_release, + .ioctl = fmi_ioctl, + .llseek = no_llseek, }; static struct video_device fmi_radio= { - owner: THIS_MODULE, - name: "SF16FMx radio", - type: VID_TYPE_TUNER, - hardware: VID_HARDWARE_SF16MI, - fops: &fmi_fops, + .owner = THIS_MODULE, + .name = "SF16FMx radio", + .type = VID_TYPE_TUNER, + .hardware = VID_HARDWARE_SF16MI, + .fops = &fmi_fops, }; /* ladis: this is my card. does any other types exist? */ diff --git a/drivers/media/radio/radio-terratec.c b/drivers/media/radio/radio-terratec.c index 8ec2682c6a0b..2459573203b9 100644 --- a/drivers/media/radio/radio-terratec.c +++ b/drivers/media/radio/radio-terratec.c @@ -272,20 +272,20 @@ static int tt_ioctl(struct inode *inode, struct file *file, static struct tt_device terratec_unit; static struct file_operations terratec_fops = { - owner: THIS_MODULE, - open: video_exclusive_open, - release: video_exclusive_release, - ioctl: tt_ioctl, - llseek: no_llseek, + .owner = THIS_MODULE, + .open = video_exclusive_open, + .release = video_exclusive_release, + .ioctl = tt_ioctl, + .llseek = no_llseek, }; static struct video_device terratec_radio= { - owner: THIS_MODULE, - name: "TerraTec ActiveRadio", - type: VID_TYPE_TUNER, - hardware: VID_HARDWARE_TERRATEC, - fops: &terratec_fops, + .owner = THIS_MODULE, + .name = "TerraTec ActiveRadio", + .type = VID_TYPE_TUNER, + .hardware = VID_HARDWARE_TERRATEC, + .fops = &terratec_fops, }; static int __init terratec_init(void) diff --git a/drivers/media/radio/radio-trust.c b/drivers/media/radio/radio-trust.c index 6cd0f6aa41a6..8dd4cd2e1dbd 100644 --- a/drivers/media/radio/radio-trust.c +++ b/drivers/media/radio/radio-trust.c @@ -251,20 +251,20 @@ static int tr_ioctl(struct inode *inode, struct file *file, } static struct file_operations trust_fops = { - owner: THIS_MODULE, - open: video_exclusive_open, - release: video_exclusive_release, - ioctl: tr_ioctl, - llseek: no_llseek, + .owner = THIS_MODULE, + .open = video_exclusive_open, + .release = video_exclusive_release, + .ioctl = tr_ioctl, + .llseek = no_llseek, }; static struct video_device trust_radio= { - owner: THIS_MODULE, - name: "Trust FM Radio", - type: VID_TYPE_TUNER, - hardware: VID_HARDWARE_TRUST, - fops: &trust_fops, + .owner = THIS_MODULE, + .name = "Trust FM Radio", + .type = VID_TYPE_TUNER, + .hardware = VID_HARDWARE_TRUST, + .fops = &trust_fops, }; static int __init trust_init(void) diff --git a/drivers/media/radio/radio-typhoon.c b/drivers/media/radio/radio-typhoon.c index 66bdcc01fd22..f1db827ee708 100644 --- a/drivers/media/radio/radio-typhoon.c +++ b/drivers/media/radio/radio-typhoon.c @@ -251,26 +251,26 @@ static int typhoon_ioctl(struct inode *inode, struct file *file, static struct typhoon_device typhoon_unit = { - iobase: CONFIG_RADIO_TYPHOON_PORT, - curfreq: CONFIG_RADIO_TYPHOON_MUTEFREQ, - mutefreq: CONFIG_RADIO_TYPHOON_MUTEFREQ, + .iobase = CONFIG_RADIO_TYPHOON_PORT, + .curfreq = CONFIG_RADIO_TYPHOON_MUTEFREQ, + .mutefreq = CONFIG_RADIO_TYPHOON_MUTEFREQ, }; static struct file_operations typhoon_fops = { - owner: THIS_MODULE, - open: video_exclusive_open, - release: video_exclusive_release, - ioctl: typhoon_ioctl, - llseek: no_llseek, + .owner = THIS_MODULE, + .open = video_exclusive_open, + .release = video_exclusive_release, + .ioctl = typhoon_ioctl, + .llseek = no_llseek, }; static struct video_device typhoon_radio = { - owner: THIS_MODULE, - name: "Typhoon Radio", - type: VID_TYPE_TUNER, - hardware: VID_HARDWARE_TYPHOON, - fops: &typhoon_fops, + .owner = THIS_MODULE, + .name = "Typhoon Radio", + .type = VID_TYPE_TUNER, + .hardware = VID_HARDWARE_TYPHOON, + .fops = &typhoon_fops, }; #ifdef CONFIG_RADIO_TYPHOON_PROC_FS diff --git a/drivers/media/radio/radio-zoltrix.c b/drivers/media/radio/radio-zoltrix.c index 8add82dbae6b..2c309c5e8ed1 100644 --- a/drivers/media/radio/radio-zoltrix.c +++ b/drivers/media/radio/radio-zoltrix.c @@ -320,20 +320,20 @@ static struct zol_device zoltrix_unit; static struct file_operations zoltrix_fops = { - owner: THIS_MODULE, - open: video_exclusive_open, - release: video_exclusive_release, - ioctl: zol_ioctl, - llseek: no_llseek, + .owner = THIS_MODULE, + .open = video_exclusive_open, + .release = video_exclusive_release, + .ioctl = zol_ioctl, + .llseek = no_llseek, }; static struct video_device zoltrix_radio = { - owner: THIS_MODULE, - name: "Zoltrix Radio Plus", - type: VID_TYPE_TUNER, - hardware: VID_HARDWARE_ZOLTRIX, - fops: &zoltrix_fops, + .owner = THIS_MODULE, + .name = "Zoltrix Radio Plus", + .type = VID_TYPE_TUNER, + .hardware = VID_HARDWARE_ZOLTRIX, + .fops = &zoltrix_fops, }; static int __init zoltrix_init(void) |
