abituguru.c (94bd217e2d683719ab21a4ac117d8a1b91cbedc9) | abituguru.c (90ab5ee94171b3e28de6bb42ee30b527014e0be7) |
---|---|
1/* 2 abituguru.c Copyright (c) 2005-2006 Hans de Goede <hdegoede@redhat.com> 3 4 This program is free software; you can redistribute it and/or modify 5 it under the terms of the GNU General Public License as published by 6 the Free Software Foundation; either version 2 of the License, or 7 (at your option) any later version. 8 --- 131 unchanged lines hidden (view full) --- 140/* Min / Max allowed values for pwm_settings. Note: pwm1 (CPU fan) is a 141 special case the minium allowed pwm% setting for this is 30% (77) on 142 some MB's this special case is handled in the code! */ 143static const u8 abituguru_pwm_min[5] = { 0, 170, 170, 25, 25 }; 144static const u8 abituguru_pwm_max[5] = { 0, 255, 255, 75, 75 }; 145 146 147/* Insmod parameters */ | 1/* 2 abituguru.c Copyright (c) 2005-2006 Hans de Goede <hdegoede@redhat.com> 3 4 This program is free software; you can redistribute it and/or modify 5 it under the terms of the GNU General Public License as published by 6 the Free Software Foundation; either version 2 of the License, or 7 (at your option) any later version. 8 --- 131 unchanged lines hidden (view full) --- 140/* Min / Max allowed values for pwm_settings. Note: pwm1 (CPU fan) is a 141 special case the minium allowed pwm% setting for this is 30% (77) on 142 some MB's this special case is handled in the code! */ 143static const u8 abituguru_pwm_min[5] = { 0, 170, 170, 25, 25 }; 144static const u8 abituguru_pwm_max[5] = { 0, 255, 255, 75, 75 }; 145 146 147/* Insmod parameters */ |
148static int force; | 148static bool force; |
149module_param(force, bool, 0); 150MODULE_PARM_DESC(force, "Set to one to force detection."); 151static int bank1_types[ABIT_UGURU_MAX_BANK1_SENSORS] = { -1, -1, -1, -1, -1, 152 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 }; 153module_param_array(bank1_types, int, NULL, 0); 154MODULE_PARM_DESC(bank1_types, "Bank1 sensortype autodetection override:\n" 155 " -1 autodetect\n" 156 " 0 volt sensor\n" --- 1354 unchanged lines hidden --- | 149module_param(force, bool, 0); 150MODULE_PARM_DESC(force, "Set to one to force detection."); 151static int bank1_types[ABIT_UGURU_MAX_BANK1_SENSORS] = { -1, -1, -1, -1, -1, 152 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 }; 153module_param_array(bank1_types, int, NULL, 0); 154MODULE_PARM_DESC(bank1_types, "Bank1 sensortype autodetection override:\n" 155 " -1 autodetect\n" 156 " 0 volt sensor\n" --- 1354 unchanged lines hidden --- |