"SfR Fresh" - the SfR Freeware/Shareware Archive

Member "usr/lib/oss/build/als4000.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	als4000
    5 #define DRIVER_NICK	"als4000"
    6 #define DRIVER_STR_INFO	als4000_str_info
    7 #define DRIVER_ATTACH	als4000_attach
    8 #define DRIVER_DETACH	als4000_detach
    9 #define DRIVER_TYPE	DRV_PCI
   10 
   11 int als4000_mpu_ioaddr=0;
   12 /*
   13  * MPU 401 I/O Address
   14  * Values: 0x300, 0x310, 0x320, 0x330, 0x340, 0x350, 0x360, 0x370 Default: 0x330
   15  */
   16 
   17 int als4000_mpu_irq=0;
   18 /*
   19  * MPU 401 IRQ
   20  * Values: 5, 7, 9, 10, 11       Default: 0
   21  */
   22 #include <linux/mod_devicetable.h>
   23 
   24 static struct pci_device_id id_table[] = {
   25 	{.vendor=0x4005,	.device=0x4000,	.subvendor=PCI_ANY_ID,	.subdevice=PCI_ANY_ID},
   26 	{0}
   27 };
   28 
   29 #include "module.inc"
   30 
   31 module_param(als4000_mpu_ioaddr, int, S_IRUGO);
   32 MODULE_PARM_DESC(als4000_mpu_ioaddr,
   33 "\n"
   34 "MPU 401 I/O Address\n"
   35 "Values: 0x300, 0x310, 0x320, 0x330, 0x340, 0x350, 0x360, 0x370 Default: 0x330\n"
   36 "\n"
   37 "\n");
   38 module_param(als4000_mpu_irq, int, S_IRUGO);
   39 MODULE_PARM_DESC(als4000_mpu_irq,
   40 "\n"
   41 "MPU 401 IRQ\n"
   42 "Values: 5, 7, 9, 10, 11       Default: 0\n"
   43 "\n");
   44 
   45