"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 cs4280
5 #define DRIVER_NICK "cs4280"
6 #define DRIVER_STR_INFO cs4280_str_info
7 #define DRIVER_ATTACH cs4280_attach
8 #define DRIVER_DETACH cs4280_detach
9 #define DRIVER_TYPE DRV_PCI
10
11 int cs4280_clkrun_fix=0;
12 /*
13 * Some IBM Thinkpads require a workaround for the CLKRUN protocol.
14 * Values: 1=Enable 0=Disable Default: 0
15 */
16
17 #include <linux/mod_devicetable.h>
18
19 static struct pci_device_id id_table[] = {
20 {.vendor=0x1013, .device=0x6001, .subvendor=PCI_ANY_ID, .subdevice=PCI_ANY_ID},
21 {.vendor=0x1013, .device=0x6003, .subvendor=PCI_ANY_ID, .subdevice=PCI_ANY_ID},
22 {.vendor=0x1013, .device=0x6004, .subvendor=PCI_ANY_ID, .subdevice=PCI_ANY_ID},
23 {0}
24 };
25
26 #include "module.inc"
27
28 module_param(cs4280_clkrun_fix, int, S_IRUGO);
29 MODULE_PARM_DESC(cs4280_clkrun_fix,
30 "\n"
31 "Some IBM Thinkpads require a workaround for the CLKRUN protocol. \n"
32 "Values: 1=Enable 0=Disable Default: 0\n"
33 "\n"
34 "\n");
35
36