Ignore:
Timestamp:
Apr 3, 2017, 4:51:56 PM (8 years ago)
Author:
David Azarewicz
Message:

Merged/reintegrated v2 branch into trunk. Trunk is now v2

Location:
GPL/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • GPL/trunk

  • TabularUnified GPL/trunk/alsa-kernel/core/oss/mixer_oss.c

    r446 r598  
    4444        int err;
    4545
     46        err = nonseekable_open(inode, file);
     47        if (err < 0)
     48                return err;
     49
    4650        card = snd_lookup_oss_minor_data(iminor(inode),
    4751                                         SNDRV_OSS_DEVICE_TYPE_MIXER);
     
    7478
    7579        if (file->private_data) {
    76                 fmixer = (struct snd_mixer_oss_file *) file->private_data;
     80                fmixer = file->private_data;
    7781                module_put(fmixer->card->module);
    7882                snd_card_file_remove(fmixer->card, file);
     
    365369static long snd_mixer_oss_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
    366370{
    367         return snd_mixer_oss_ioctl1((struct snd_mixer_oss_file *) file->private_data, cmd, arg);
     371        return snd_mixer_oss_ioctl1(file->private_data, cmd, arg);
    368372}
    369373
     
    409413        .open =         snd_mixer_oss_open,
    410414        .release =      snd_mixer_oss_release,
     415        .llseek =       no_llseek,
    411416#ifdef CONFIG_SND_HAVE_NEW_IOCTL
    412         .unlocked_ioctl =       snd_mixer_oss_ioctl,
    413         .compat_ioctl = snd_mixer_oss_ioctl_compat,
     417        .unlocked_ioctl =       snd_mixer_oss_ioctl,
     418        .compat_ioctl = snd_mixer_oss_ioctl_compat,
    414419#else
    415420        .ioctl =        snd_mixer_oss_ioctl_old,
     
    593598                                     int *left, int *right)
    594599{
    595         struct slot *slot = (struct slot *)pslot->private_data;
     600        struct slot *slot = pslot->private_data;
    596601       
    597602        *left = *right = 100;
     
    629634                return;
    630635        down_read(&card->controls_rwsem);
    631         if ((kctl = snd_ctl_find_numid(card, numid)) == NULL)
     636        if ((kctl = snd_ctl_find_numid(card, numid)) == NULL) {
     637                up_read(&card->controls_rwsem);
    632638                return;
     639        }
    633640        uinfo = kzalloc(sizeof(*uinfo), GFP_KERNEL);
    634641        uctl = kzalloc(sizeof(*uctl), GFP_KERNEL);
     
    669676        down_read(&card->controls_rwsem);
    670677        if ((kctl = snd_ctl_find_numid(card, numid)) == NULL) {
    671                 up_read(&fmixer->card->controls_rwsem);
     678                up_read(&card->controls_rwsem);
    672679                return;
    673680        }
     
    702709                                     int left, int right)
    703710{
    704         struct slot *slot = (struct slot *)pslot->private_data;
     711        struct slot *slot = pslot->private_data;
    705712       
    706713        if (slot->present & SNDRV_MIXER_OSS_PRESENT_PVOLUME) {
     
    751758                                        int *active)
    752759{
    753         struct slot *slot = (struct slot *)pslot->private_data;
     760        struct slot *slot = pslot->private_data;
    754761        int left, right;
    755762       
     
    764771                                           int *active)
    765772{
    766         struct slot *slot = (struct slot *)pslot->private_data;
     773        struct slot *slot = pslot->private_data;
    767774        int left, right;
    768775       
     
    777784                                        int active)
    778785{
    779         struct slot *slot = (struct slot *)pslot->private_data;
     786        struct slot *slot = pslot->private_data;
    780787       
    781788        snd_mixer_oss_put_volume1_sw(fmixer, pslot, slot->numid[SNDRV_MIXER_OSS_ITEM_CSWITCH], active, active, 0);
     
    787794                                           int active)
    788795{
    789         struct slot *slot = (struct slot *)pslot->private_data;
     796        struct slot *slot = pslot->private_data;
    790797       
    791798        snd_mixer_oss_put_volume1_sw(fmixer, pslot, slot->numid[SNDRV_MIXER_OSS_ITEM_CROUTE], active, active, 1);
     
    808815        if (uinfo == NULL || uctl == NULL) {
    809816                err = -ENOMEM;
    810                 goto __unlock;
     817                goto __free_only;
    811818        }
    812819        down_read(&card->controls_rwsem);
     
    824831                        continue;
    825832                pslot = &mixer->slots[idx];
    826                 slot = (struct slot *)pslot->private_data;
     833                slot = pslot->private_data;
    827834                if (slot->signature != SNDRV_MIXER_OSS_SIGNATURE)
    828835                        continue;
     
    837844      __unlock:
    838845        up_read(&card->controls_rwsem);
     846      __free_only:
    839847        kfree(uctl);
    840848        kfree(uinfo);
     
    858866        if (uinfo == NULL || uctl == NULL) {
    859867                err = -ENOMEM;
    860                 goto __unlock;
     868                goto __free_only;
    861869        }
    862870        down_read(&card->controls_rwsem);
     
    872880                        continue;
    873881                pslot = &mixer->slots[idx];
    874                 slot = (struct slot *)pslot->private_data;
     882                slot = pslot->private_data;
    875883                if (slot->signature != SNDRV_MIXER_OSS_SIGNATURE)
    876884                        continue;
     
    891899      __unlock:
    892900        up_read(&card->controls_rwsem);
     901      __free_only:
    893902        kfree(uctl);
    894903        kfree(uinfo);
     
    936945static void snd_mixer_oss_slot_free(struct snd_mixer_oss_slot *chn)
    937946{
    938         struct slot *p = (struct slot *)chn->private_data;
     947        struct slot *p = chn->private_data;
    939948        if (p) {
    940949                if (p->allocated && p->assigned) {
     
    11701179{
    11711180        struct snd_mixer_oss *mixer = entry->private_data;
    1172         char line[128], str[32], idxstr[16], *cptr;
     1181        char line[128], str[32], idxstr[16];
     1182        const char *cptr;
    11731183        int ch, idx;
    11741184        struct snd_mixer_oss_assign_table *tbl;
     
    12661276                { SOUND_MIXER_SYNTH,    "Music",                0 }, /* fallback */
    12671277                { SOUND_MIXER_PCM,      "PCM",                  0 },
    1268                 { SOUND_MIXER_SPEAKER,  "PC Speaker",           0 },
     1278                { SOUND_MIXER_SPEAKER,  "Beep",                 0 },
     1279                { SOUND_MIXER_SPEAKER,  "PC Speaker",           0 }, /* fallback */
     1280                { SOUND_MIXER_SPEAKER,  "Speaker",              0 }, /* fallback */
    12691281                { SOUND_MIXER_LINE,     "Line",                 0 },
    12701282                { SOUND_MIXER_MIC,      "Mic",                  0 },
Note: See TracChangeset for help on using the changeset viewer.