Commit 395d9dd5 authored by Peter Senna Tschudin's avatar Peter Senna Tschudin Committed by Takashi Iwai

sound: Remove unnecessary semicolon

A simplified version of the semantic patch that finds this problem is as
follows: (http://coccinelle.lip6.fr/)

// <smpl>
@r1@
statement S;
position p,p1;
@@
S@p1;@p

@script:python r2@
p << r1.p;
p1 << r1.p1;
@@
if p[0].line != p1[0].line_end:
        cocci.include_match(False)
@@
position r1.p;
@@
-;@p
// </smpl>
Signed-off-by: default avatarPeter Senna Tschudin <peter.senna@gmail.com>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 9f720bb9
...@@ -163,7 +163,7 @@ static int opl3_get_voice(struct snd_opl3 *opl3, int instr_4op, ...@@ -163,7 +163,7 @@ static int opl3_get_voice(struct snd_opl3 *opl3, int instr_4op,
struct best *bp; struct best *bp;
for (i = 0; i < END; i++) { for (i = 0; i < END; i++) {
best[i].time = (unsigned int)(-1); /* XXX MAX_?INT really */; best[i].time = (unsigned int)(-1); /* XXX MAX_?INT really */
best[i].voice = -1; best[i].voice = -1;
} }
......
...@@ -184,7 +184,7 @@ static int vx_set_format(struct vx_core *chip, struct vx_pipe *pipe, ...@@ -184,7 +184,7 @@ static int vx_set_format(struct vx_core *chip, struct vx_pipe *pipe,
default : default :
snd_BUG(); snd_BUG();
return -EINVAL; return -EINVAL;
}; }
return vx_set_stream_format(chip, pipe, header); return vx_set_stream_format(chip, pipe, header);
} }
......
...@@ -175,7 +175,7 @@ get_voice(struct snd_emux *emu, struct snd_emux_port *port) ...@@ -175,7 +175,7 @@ get_voice(struct snd_emux *emu, struct snd_emux_port *port)
hw = emu->hw; hw = emu->hw;
for (i = 0; i < END; i++) { for (i = 0; i < END; i++) {
best[i].time = (unsigned int)(-1); /* XXX MAX_?INT really */; best[i].time = (unsigned int)(-1); /* XXX MAX_?INT really */
best[i].voice = -1; best[i].voice = -1;
} }
......
...@@ -538,7 +538,7 @@ munge_int32 (unsigned int src, ...@@ -538,7 +538,7 @@ munge_int32 (unsigned int src,
/* Note: we leave the upper bits in place */ /* Note: we leave the upper bits in place */
dst++; dst++;
}; }
return dst; return dst;
}; };
......
...@@ -354,7 +354,7 @@ int audio_read(int dev, struct file *file, char __user *buf, int count) ...@@ -354,7 +354,7 @@ int audio_read(int dev, struct file *file, char __user *buf, int count)
if(copy_to_user(&(buf)[p], fixit, l)) if(copy_to_user(&(buf)[p], fixit, l))
return -EFAULT; return -EFAULT;
}; }
DMAbuf_rmchars(dev, buf_no, l); DMAbuf_rmchars(dev, buf_no, l);
......
...@@ -1190,7 +1190,7 @@ static int opl3_init(int ioaddr, struct module *owner) ...@@ -1190,7 +1190,7 @@ static int opl3_init(int ioaddr, struct module *owner)
for (i = 0; i < 18; i++) for (i = 0; i < 18; i++)
pv_map[i].ioaddr = devc->left_io; pv_map[i].ioaddr = devc->left_io;
}; }
conf_printf2(devc->fm_info.name, ioaddr, 0, -1, -1); conf_printf2(devc->fm_info.name, ioaddr, 0, -1, -1);
for (i = 0; i < SBFM_MAXINSTR; i++) for (i = 0; i < SBFM_MAXINSTR; i++)
......
...@@ -359,7 +359,7 @@ static int pss_download_boot(pss_confdata * devc, unsigned char *block, int size ...@@ -359,7 +359,7 @@ static int pss_download_boot(pss_confdata * devc, unsigned char *block, int size
{ {
/*_____ Send the next byte */ /*_____ Send the next byte */
outw (*block++, REG (PSS_DATA)); outw (*block++, REG (PSS_DATA));
}; }
count++; count++;
} }
......
...@@ -1104,15 +1104,15 @@ int ess_init(sb_devc * devc, struct address_info *hw_config) ...@@ -1104,15 +1104,15 @@ int ess_init(sb_devc * devc, struct address_info *hw_config)
default: default:
printk (KERN_ERR "Invalid esstype=%d specified\n", devc->sbmo.esstype); printk (KERN_ERR "Invalid esstype=%d specified\n", devc->sbmo.esstype);
return 0; return 0;
}; }
if (submodel != -1) { if (submodel != -1) {
devc->submodel = submodel; devc->submodel = submodel;
sprintf (modelname, "ES%d", devc->sbmo.esstype); sprintf (modelname, "ES%d", devc->sbmo.esstype);
chip = modelname; chip = modelname;
}; }
if (chip == NULL && (ess_minor & 0x0f) < 8) { if (chip == NULL && (ess_minor & 0x0f) < 8) {
chip = "ES688"; chip = "ES688";
}; }
#ifdef FKS_TEST #ifdef FKS_TEST
FKS_test (devc); FKS_test (devc);
#endif #endif
...@@ -1122,7 +1122,7 @@ FKS_test (devc); ...@@ -1122,7 +1122,7 @@ FKS_test (devc);
*/ */
if (chip == NULL && devc->sbmo.esstype == ESSTYPE_LIKE20) { if (chip == NULL && devc->sbmo.esstype == ESSTYPE_LIKE20) {
chip = "ES1688"; chip = "ES1688";
}; }
if (chip == NULL) { if (chip == NULL) {
int type; int type;
...@@ -1150,8 +1150,8 @@ FKS_test (devc); ...@@ -1150,8 +1150,8 @@ FKS_test (devc);
if ((type & 0x00ff) != ((type >> 8) & 0x00ff)) { if ((type & 0x00ff) != ((type >> 8) & 0x00ff)) {
printk ("ess_init: Unrecognized %04x\n", type); printk ("ess_init: Unrecognized %04x\n", type);
} }
}; }
}; }
#if 0 #if 0
/* /*
* this one failed: * this one failed:
...@@ -1182,10 +1182,10 @@ FKS_test (devc); ...@@ -1182,10 +1182,10 @@ FKS_test (devc);
chip = "ES1788"; chip = "ES1788";
devc->submodel = SUBMDL_ES1788; devc->submodel = SUBMDL_ES1788;
} }
}; }
if (chip == NULL) { if (chip == NULL) {
chip = "ES1688"; chip = "ES1688";
}; }
printk ( KERN_INFO "ESS chip %s %s%s\n" printk ( KERN_INFO "ESS chip %s %s%s\n"
, chip , chip
...@@ -1293,7 +1293,7 @@ printk(KERN_INFO "ess_set_dma_hw: dma8=%d,dma16=%d,dup=%d\n" ...@@ -1293,7 +1293,7 @@ printk(KERN_INFO "ess_set_dma_hw: dma8=%d,dma16=%d,dup=%d\n"
default: default:
printk(KERN_ERR "ESS1887: Invalid DMA16 %d\n", dma); printk(KERN_ERR "ESS1887: Invalid DMA16 %d\n", dma);
return 0; return 0;
}; }
ess_chgmixer (devc, 0x78, 0x20, dma16_bits); ess_chgmixer (devc, 0x78, 0x20, dma16_bits);
ess_chgmixer (devc, 0x7d, 0x07, dma_bits); ess_chgmixer (devc, 0x7d, 0x07, dma_bits);
} }
...@@ -1584,7 +1584,7 @@ printk(KERN_INFO "FKS: write mixer %x: %x\n", port, value); ...@@ -1584,7 +1584,7 @@ printk(KERN_INFO "FKS: write mixer %x: %x\n", port, value);
udelay(20); udelay(20);
outb(((unsigned char) (value & 0xff)), MIXER_DATA); outb(((unsigned char) (value & 0xff)), MIXER_DATA);
udelay(20); udelay(20);
}; }
spin_unlock_irqrestore(&devc->lock, flags); spin_unlock_irqrestore(&devc->lock, flags);
} }
...@@ -1761,7 +1761,7 @@ int ess_mixer_reset (sb_devc * devc) ...@@ -1761,7 +1761,7 @@ int ess_mixer_reset (sb_devc * devc)
ess_chgmixer(devc, 0x7a, 0x18, 0x08); ess_chgmixer(devc, 0x7a, 0x18, 0x08);
ess_chgmixer(devc, 0x1c, 0x07, 0x07); ess_chgmixer(devc, 0x1c, 0x07, 0x07);
break; break;
}; }
/* /*
* Call set_recmask for proper initialization * Call set_recmask for proper initialization
*/ */
......
...@@ -410,7 +410,7 @@ static int set_recmask(sb_devc * devc, int mask) ...@@ -410,7 +410,7 @@ static int set_recmask(sb_devc * devc, int mask)
case MDL_SMW: case MDL_SMW:
if (devc->model == MDL_ESS && ess_set_recmask (devc, &devmask)) { if (devc->model == MDL_ESS && ess_set_recmask (devc, &devmask)) {
break; break;
}; }
if (devmask != SOUND_MASK_MIC && if (devmask != SOUND_MASK_MIC &&
devmask != SOUND_MASK_LINE && devmask != SOUND_MASK_LINE &&
devmask != SOUND_MASK_CD) devmask != SOUND_MASK_CD)
...@@ -666,7 +666,7 @@ static void sb_mixer_reset(sb_devc * devc) ...@@ -666,7 +666,7 @@ static void sb_mixer_reset(sb_devc * devc)
if (devc->model != MDL_ESS || !ess_mixer_reset (devc)) { if (devc->model != MDL_ESS || !ess_mixer_reset (devc)) {
set_recmask(devc, SOUND_MASK_MIC); set_recmask(devc, SOUND_MASK_MIC);
}; }
} }
int sb_mixer_init(sb_devc * devc, struct module *owner) int sb_mixer_init(sb_devc * devc, struct module *owner)
......
...@@ -57,7 +57,7 @@ poll_def_tmr(unsigned long dummy) ...@@ -57,7 +57,7 @@ poll_def_tmr(unsigned long dummy)
{ {
def_tmr.expires = (1) + jiffies; def_tmr.expires = (1) + jiffies;
add_timer(&def_tmr); add_timer(&def_tmr);
}; }
if (tmr_running) if (tmr_running)
{ {
...@@ -103,7 +103,7 @@ def_tmr_open(int dev, int mode) ...@@ -103,7 +103,7 @@ def_tmr_open(int dev, int mode)
{ {
def_tmr.expires = (1) + jiffies; def_tmr.expires = (1) + jiffies;
add_timer(&def_tmr); add_timer(&def_tmr);
}; }
return 0; return 0;
} }
......
...@@ -146,7 +146,7 @@ static int uart6850_open(int dev, int mode, ...@@ -146,7 +146,7 @@ static int uart6850_open(int dev, int mode,
{ {
/* printk("Midi6850: Midi busy\n");*/ /* printk("Midi6850: Midi busy\n");*/
return -EBUSY; return -EBUSY;
}; }
uart6850_cmd(UART_RESET); uart6850_cmd(UART_RESET);
uart6850_input_loop(); uart6850_input_loop();
......
...@@ -2658,7 +2658,7 @@ static int __devinit snd_card_asihpi_mixer_new(struct snd_card_asihpi *asihpi) ...@@ -2658,7 +2658,7 @@ static int __devinit snd_card_asihpi_mixer_new(struct snd_card_asihpi *asihpi)
hpi_ctl.dst_node_type, hpi_ctl.dst_node_type,
hpi_ctl.dst_node_index); hpi_ctl.dst_node_index);
continue; continue;
}; }
if (err < 0) if (err < 0)
return err; return err;
} }
......
...@@ -100,7 +100,7 @@ static int __devinit vortex_gameport_register(vortex_t * vortex) ...@@ -100,7 +100,7 @@ static int __devinit vortex_gameport_register(vortex_t * vortex)
if (!gp) { if (!gp) {
printk(KERN_ERR "vortex: cannot allocate memory for gameport\n"); printk(KERN_ERR "vortex: cannot allocate memory for gameport\n");
return -ENOMEM; return -ENOMEM;
}; }
gameport_set_name(gp, "AU88x0 Gameport"); gameport_set_name(gp, "AU88x0 Gameport");
gameport_set_phys(gp, "pci%s/gameport0", pci_name(vortex->pci_dev)); gameport_set_phys(gp, "pci%s/gameport0", pci_name(vortex->pci_dev));
......
...@@ -585,7 +585,7 @@ static int snd_vortex_pcm_vol_put(struct snd_kcontrol *kcontrol, ...@@ -585,7 +585,7 @@ static int snd_vortex_pcm_vol_put(struct snd_kcontrol *kcontrol,
case 4: case 4:
mixin = p->mixin[i]; mixin = p->mixin[i];
break; break;
}; }
vol = p->vol[i]; vol = p->vol[i];
vortex_mix_setinputvolumebyte(vortex, vortex_mix_setinputvolumebyte(vortex,
vortex->mixplayb[i], mixin, vol); vortex->mixplayb[i], mixin, vol);
......
...@@ -228,7 +228,7 @@ lookup_voices(struct snd_emux *emu, struct snd_emu10k1 *hw, ...@@ -228,7 +228,7 @@ lookup_voices(struct snd_emux *emu, struct snd_emu10k1 *hw,
int i; int i;
for (i = 0; i < V_END; i++) { for (i = 0; i < V_END; i++) {
best[i].time = (unsigned int)-1; /* XXX MAX_?INT really */; best[i].time = (unsigned int)-1; /* XXX MAX_?INT really */
best[i].voice = -1; best[i].voice = -1;
} }
......
...@@ -1310,7 +1310,7 @@ static int snd_emu10k1_capture_efx_open(struct snd_pcm_substream *substream) ...@@ -1310,7 +1310,7 @@ static int snd_emu10k1_capture_efx_open(struct snd_pcm_substream *substream)
runtime->hw.channels_min = runtime->hw.channels_min =
runtime->hw.channels_max = 16; runtime->hw.channels_max = 16;
break; break;
}; }
#endif #endif
#if 0 #if 0
/* For 96kHz */ /* For 96kHz */
......
...@@ -2226,7 +2226,7 @@ static int __devinit snd_intel8x0_mixer(struct intel8x0 *chip, int ac97_clock, ...@@ -2226,7 +2226,7 @@ static int __devinit snd_intel8x0_mixer(struct intel8x0 *chip, int ac97_clock,
case DEVICE_INTEL_ICH4: case DEVICE_INTEL_ICH4:
chip->spdif_idx = ICHD_SPBAR; chip->spdif_idx = ICHD_SPBAR;
break; break;
}; }
} }
chip->in_ac97_init = 1; chip->in_ac97_init = 1;
......
...@@ -538,7 +538,7 @@ static int mixart_dsp_load(struct mixart_mgr* mgr, int index, const struct firmw ...@@ -538,7 +538,7 @@ static int mixart_dsp_load(struct mixart_mgr* mgr, int index, const struct firmw
if ((err = snd_card_register(chip->card)) < 0) if ((err = snd_card_register(chip->card)) < 0)
return err; return err;
}; }
snd_printdd("miXart firmware downloaded and successfully set up\n"); snd_printdd("miXart firmware downloaded and successfully set up\n");
......
...@@ -813,7 +813,7 @@ static int snd_amd7930_get_volume(struct snd_kcontrol *kctl, struct snd_ctl_elem ...@@ -813,7 +813,7 @@ static int snd_amd7930_get_volume(struct snd_kcontrol *kctl, struct snd_ctl_elem
default: default:
swval = &amd->pgain; swval = &amd->pgain;
break; break;
}; }
ucontrol->value.integer.value[0] = *swval; ucontrol->value.integer.value[0] = *swval;
...@@ -838,7 +838,7 @@ static int snd_amd7930_put_volume(struct snd_kcontrol *kctl, struct snd_ctl_elem ...@@ -838,7 +838,7 @@ static int snd_amd7930_put_volume(struct snd_kcontrol *kctl, struct snd_ctl_elem
default: default:
swval = &amd->pgain; swval = &amd->pgain;
break; break;
}; }
spin_lock_irqsave(&amd->lock, flags); spin_lock_irqsave(&amd->lock, flags);
......
...@@ -592,7 +592,7 @@ static __u32 reverse_bytes(__u32 b, int len) ...@@ -592,7 +592,7 @@ static __u32 reverse_bytes(__u32 b, int len)
break; break;
default: default:
printk(KERN_ERR "DBRI reverse_bytes: unsupported length\n"); printk(KERN_ERR "DBRI reverse_bytes: unsupported length\n");
}; }
return b; return b;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment