"SfR Fresh" - the SfR Freeware/Shareware Archive

Member "usr/lib/oss/build/lynxtwo.c" of archive oss-linux-v4.0-1016-x86_64.tar.gz:


As a special service "SfR Fresh" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file. That can be also achieved for any archive member file by clicking within an archive contents listing on the first character of the file(path) respectively on the according byte size field.
    1 /*
    2  * Automatically generated file - do not edit.
    3  */
    4 #define DRIVER_NAME	lynxtwo
    5 #define DRIVER_NICK	"lynxtwo"
    6 #define DRIVER_STR_INFO	lynxtwo_str_info
    7 #define DRIVER_ATTACH	lynxtwo_attach
    8 #define DRIVER_DETACH	lynxtwo_detach
    9 #define DRIVER_TYPE	DRV_PCI
   10 
   11 int lynxtwo_init_order=0;
   12 /*
   13  * lynxtwo_init_order determines if the output devices files are created before
   14  * the input ones (0) or vice versa (1).
   15  *
   16  * This may be necessary with a known application which expect all /dev/dsp#
   17  * devices to be recording devices.
   18  */
   19 #include <linux/mod_devicetable.h>
   20 
   21 static struct pci_device_id id_table[] = {
   22 	{.vendor=0x1621,	.device=0x20,	.subvendor=PCI_ANY_ID,	.subdevice=PCI_ANY_ID},
   23 	{.vendor=0x1621,	.device=0x21,	.subvendor=PCI_ANY_ID,	.subdevice=PCI_ANY_ID},
   24 	{.vendor=0x1621,	.device=0x22,	.subvendor=PCI_ANY_ID,	.subdevice=PCI_ANY_ID},
   25 	{.vendor=0x1621,	.device=0x23,	.subvendor=PCI_ANY_ID,	.subdevice=PCI_ANY_ID},
   26 	{.vendor=0x1621,	.device=0x24,	.subvendor=PCI_ANY_ID,	.subdevice=PCI_ANY_ID},
   27 	{.vendor=0x1621,	.device=0x25,	.subvendor=PCI_ANY_ID,	.subdevice=PCI_ANY_ID},
   28 	{0}
   29 };
   30 
   31 #include "module.inc"
   32 
   33 module_param(lynxtwo_init_order, int, S_IRUGO);
   34 MODULE_PARM_DESC(lynxtwo_init_order,
   35 "\n"
   36 "lynxtwo_init_order determines if the output devices files are created before\n"
   37 "the input ones (0) or vice versa (1).\n"
   38 "\n"
   39 "This may be necessary with a known application which expect all /dev/dsp#\n"
   40 "devices to be recording devices.\n"
   41 "\n");
   42 
   43