"SfR Fresh" - the SfR Freeware/Shareware Archive 
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 envy24ht
5 #define DRIVER_NICK "envy24ht"
6 #define DRIVER_STR_INFO envy24ht_str_info
7 #define DRIVER_ATTACH envy24ht_attach
8 #define DRIVER_DETACH envy24ht_detach
9 #define DRIVER_TYPE DRV_PCI
10
11 int envy24ht_model = -1;
12 /*
13 * Select the Model number if the card isn't autodetected
14 * Values: 0 = Envy24ht 1=Envy24PT/HT-s compatible -1=Autodetect Default: -1
15 */
16
17 #include <linux/mod_devicetable.h>
18
19 static struct pci_device_id id_table[] = {
20 {.vendor=0x1412, .device=0x1724, .subvendor=PCI_ANY_ID, .subdevice=PCI_ANY_ID},
21 {0}
22 };
23
24 #include "module.inc"
25
26 module_param(envy24ht_model , int, S_IRUGO);
27 MODULE_PARM_DESC(envy24ht_model ,
28 "\n"
29 "Select the Model number if the card isn't autodetected\n"
30 "Values: 0 = Envy24ht 1=Envy24PT/HT-s compatible -1=Autodetect Default: -1\n"
31 "\n"
32 "\n");
33
34