~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/sound/isa/adlib.c

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /sound/isa/adlib.c (Version linux-6.11-rc3) and /sound/isa/adlib.c (Version linux-2.4.37.11)


  1 // SPDX-License-Identifier: GPL-2.0-only            1 
  2 /*                                                
  3  * AdLib FM card driver.                          
  4  */                                               
  5                                                   
  6 #include <linux/kernel.h>                         
  7 #include <linux/module.h>                         
  8 #include <linux/isa.h>                            
  9 #include <sound/core.h>                           
 10 #include <sound/initval.h>                        
 11 #include <sound/opl3.h>                           
 12                                                   
 13 #define CRD_NAME "AdLib FM"                       
 14 #define DEV_NAME "adlib"                          
 15                                                   
 16 MODULE_DESCRIPTION(CRD_NAME);                     
 17 MODULE_AUTHOR("Rene Herman");                     
 18 MODULE_LICENSE("GPL");                            
 19                                                   
 20 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_    
 21 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_S    
 22 static bool enable[SNDRV_CARDS] = SNDRV_DEFAUL    
 23 static long port[SNDRV_CARDS] = SNDRV_DEFAULT_    
 24                                                   
 25 module_param_array(index, int, NULL, 0444);       
 26 MODULE_PARM_DESC(index, "Index value for " CRD    
 27 module_param_array(id, charp, NULL, 0444);        
 28 MODULE_PARM_DESC(id, "ID string for " CRD_NAME    
 29 module_param_array(enable, bool, NULL, 0444);     
 30 MODULE_PARM_DESC(enable, "Enable " CRD_NAME "     
 31 module_param_hw_array(port, long, ioport, NULL    
 32 MODULE_PARM_DESC(port, "Port # for " CRD_NAME     
 33                                                   
 34 static int snd_adlib_match(struct device *dev,    
 35 {                                                 
 36         if (!enable[n])                           
 37                 return 0;                         
 38                                                   
 39         if (port[n] == SNDRV_AUTO_PORT) {         
 40                 dev_err(dev, "please specify p    
 41                 return 0;                         
 42         }                                         
 43         return 1;                                 
 44 }                                                 
 45                                                   
 46 static int snd_adlib_probe(struct device *dev,    
 47 {                                                 
 48         struct snd_card *card;                    
 49         struct snd_opl3 *opl3;                    
 50         int error;                                
 51                                                   
 52         error = snd_devm_card_new(dev, index[n    
 53         if (error < 0) {                          
 54                 dev_err(dev, "could not create    
 55                 return error;                     
 56         }                                         
 57                                                   
 58         card->private_data = devm_request_regi    
 59         if (!card->private_data) {                
 60                 dev_err(dev, "could not grab p    
 61                 return -EBUSY;                    
 62         }                                         
 63                                                   
 64         strcpy(card->driver, DEV_NAME);           
 65         strcpy(card->shortname, CRD_NAME);        
 66         sprintf(card->longname, CRD_NAME " at     
 67                                                   
 68         error = snd_opl3_create(card, port[n],    
 69         if (error < 0) {                          
 70                 dev_err(dev, "could not create    
 71                 return error;                     
 72         }                                         
 73                                                   
 74         error = snd_opl3_hwdep_new(opl3, 0, 0,    
 75         if (error < 0) {                          
 76                 dev_err(dev, "could not create    
 77                 return error;                     
 78         }                                         
 79                                                   
 80         error = snd_card_register(card);          
 81         if (error < 0) {                          
 82                 dev_err(dev, "could not regist    
 83                 return error;                     
 84         }                                         
 85                                                   
 86         dev_set_drvdata(dev, card);               
 87         return 0;                                 
 88 }                                                 
 89                                                   
 90 static struct isa_driver snd_adlib_driver = {     
 91         .match          = snd_adlib_match,        
 92         .probe          = snd_adlib_probe,        
 93                                                   
 94         .driver         = {                       
 95                 .name   = DEV_NAME                
 96         }                                         
 97 };                                                
 98                                                   
 99 module_isa_driver(snd_adlib_driver, SNDRV_CARD    
100                                                   

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php