Changeset 598 for GPL/trunk/alsa-kernel/core/oss/mixer_oss.c
- Timestamp:
- Apr 3, 2017, 4:51:56 PM (8 years ago)
- Location:
- GPL/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk ¶
-
Property svn:mergeinfo
set to
/GPL/branches/uniaud32-2.1.x merged eligible
-
Property svn:mergeinfo
set to
-
TabularUnified GPL/trunk/alsa-kernel/core/oss/mixer_oss.c ¶
r446 r598 44 44 int err; 45 45 46 err = nonseekable_open(inode, file); 47 if (err < 0) 48 return err; 49 46 50 card = snd_lookup_oss_minor_data(iminor(inode), 47 51 SNDRV_OSS_DEVICE_TYPE_MIXER); … … 74 78 75 79 if (file->private_data) { 76 fmixer = (struct snd_mixer_oss_file *)file->private_data;80 fmixer = file->private_data; 77 81 module_put(fmixer->card->module); 78 82 snd_card_file_remove(fmixer->card, file); … … 365 369 static long snd_mixer_oss_ioctl(struct file *file, unsigned int cmd, unsigned long arg) 366 370 { 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); 368 372 } 369 373 … … 409 413 .open = snd_mixer_oss_open, 410 414 .release = snd_mixer_oss_release, 415 .llseek = no_llseek, 411 416 #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, 414 419 #else 415 420 .ioctl = snd_mixer_oss_ioctl_old, … … 593 598 int *left, int *right) 594 599 { 595 struct slot *slot = (struct slot *)pslot->private_data;600 struct slot *slot = pslot->private_data; 596 601 597 602 *left = *right = 100; … … 629 634 return; 630 635 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); 632 638 return; 639 } 633 640 uinfo = kzalloc(sizeof(*uinfo), GFP_KERNEL); 634 641 uctl = kzalloc(sizeof(*uctl), GFP_KERNEL); … … 669 676 down_read(&card->controls_rwsem); 670 677 if ((kctl = snd_ctl_find_numid(card, numid)) == NULL) { 671 up_read(& fmixer->card->controls_rwsem);678 up_read(&card->controls_rwsem); 672 679 return; 673 680 } … … 702 709 int left, int right) 703 710 { 704 struct slot *slot = (struct slot *)pslot->private_data;711 struct slot *slot = pslot->private_data; 705 712 706 713 if (slot->present & SNDRV_MIXER_OSS_PRESENT_PVOLUME) { … … 751 758 int *active) 752 759 { 753 struct slot *slot = (struct slot *)pslot->private_data;760 struct slot *slot = pslot->private_data; 754 761 int left, right; 755 762 … … 764 771 int *active) 765 772 { 766 struct slot *slot = (struct slot *)pslot->private_data;773 struct slot *slot = pslot->private_data; 767 774 int left, right; 768 775 … … 777 784 int active) 778 785 { 779 struct slot *slot = (struct slot *)pslot->private_data;786 struct slot *slot = pslot->private_data; 780 787 781 788 snd_mixer_oss_put_volume1_sw(fmixer, pslot, slot->numid[SNDRV_MIXER_OSS_ITEM_CSWITCH], active, active, 0); … … 787 794 int active) 788 795 { 789 struct slot *slot = (struct slot *)pslot->private_data;796 struct slot *slot = pslot->private_data; 790 797 791 798 snd_mixer_oss_put_volume1_sw(fmixer, pslot, slot->numid[SNDRV_MIXER_OSS_ITEM_CROUTE], active, active, 1); … … 808 815 if (uinfo == NULL || uctl == NULL) { 809 816 err = -ENOMEM; 810 goto __ unlock;817 goto __free_only; 811 818 } 812 819 down_read(&card->controls_rwsem); … … 824 831 continue; 825 832 pslot = &mixer->slots[idx]; 826 slot = (struct slot *)pslot->private_data;833 slot = pslot->private_data; 827 834 if (slot->signature != SNDRV_MIXER_OSS_SIGNATURE) 828 835 continue; … … 837 844 __unlock: 838 845 up_read(&card->controls_rwsem); 846 __free_only: 839 847 kfree(uctl); 840 848 kfree(uinfo); … … 858 866 if (uinfo == NULL || uctl == NULL) { 859 867 err = -ENOMEM; 860 goto __ unlock;868 goto __free_only; 861 869 } 862 870 down_read(&card->controls_rwsem); … … 872 880 continue; 873 881 pslot = &mixer->slots[idx]; 874 slot = (struct slot *)pslot->private_data;882 slot = pslot->private_data; 875 883 if (slot->signature != SNDRV_MIXER_OSS_SIGNATURE) 876 884 continue; … … 891 899 __unlock: 892 900 up_read(&card->controls_rwsem); 901 __free_only: 893 902 kfree(uctl); 894 903 kfree(uinfo); … … 936 945 static void snd_mixer_oss_slot_free(struct snd_mixer_oss_slot *chn) 937 946 { 938 struct slot *p = (struct slot *)chn->private_data;947 struct slot *p = chn->private_data; 939 948 if (p) { 940 949 if (p->allocated && p->assigned) { … … 1170 1179 { 1171 1180 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; 1173 1183 int ch, idx; 1174 1184 struct snd_mixer_oss_assign_table *tbl; … … 1266 1276 { SOUND_MIXER_SYNTH, "Music", 0 }, /* fallback */ 1267 1277 { 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 */ 1269 1281 { SOUND_MIXER_LINE, "Line", 0 }, 1270 1282 { SOUND_MIXER_MIC, "Mic", 0 },
Note:
See TracChangeset
for help on using the changeset viewer.