Source
45
45
* Insmod parameters
46
46
*/
47
47
48
48
/* fan_voltage: 5=5V fan, 12=12V fan, 0=don't change */
49
49
static int fan_voltage;
50
50
/* prescaler: Possible values are 1, 2, 4, 8, 16 or 0 for don't change */
51
51
static int prescaler;
52
52
/* clock: The clock frequency of the chip (max6651 can be clocked externally) */
53
53
static int clock = 254000;
54
54
55
-
module_param(fan_voltage, int, S_IRUGO);
56
-
module_param(prescaler, int, S_IRUGO);
57
-
module_param(clock, int, S_IRUGO);
55
+
module_param(fan_voltage, int, 0444);
56
+
module_param(prescaler, int, 0444);
57
+
module_param(clock, int, 0444);
58
58
59
59
/*
60
60
* MAX 6650/6651 registers
61
61
*/
62
62
63
63
#define MAX6650_REG_SPEED 0x00
64
64
#define MAX6650_REG_CONFIG 0x02
65
65
#define MAX6650_REG_GPIO_DEF 0x04
66
66
#define MAX6650_REG_DAC 0x06
67
67
#define MAX6650_REG_ALARM_EN 0x08