Searched refs:uch_config (Results 1 – 3 of 3) sorted by relevance
/linux-2.6.39/drivers/hwmon/ |
D | vt1211.c | 40 static int uch_config = -1; variable 41 module_param(uch_config, int, 0); 42 MODULE_PARM_DESC(uch_config, "Initialize the universal channel configuration"); 142 u8 uch_config; /* Read once at init time */ member 147 #define ISVOLT(ix, uch_config) ((ix) > 4 ? 1 : \ argument 148 !(((uch_config) >> ((ix) + 2)) & 1)) 151 #define ISTEMP(ix, uch_config) ((ix) < 2 ? 1 : \ argument 152 ((uch_config) >> (ix)) & 1) 262 if (ISVOLT(ix, data->uch_config)) { in vt1211_update_device() 274 if (ISTEMP(ix, data->uch_config)) { in vt1211_update_device() [all …]
|
D | vt8231.c | 168 u8 uch_config; member 750 data->uch_config = vt8231_read_value(data, VT8231_REG_UCH_CONFIG); in vt8231_probe() 753 if (ISTEMP(i, data->uch_config)) { in vt8231_probe() 761 if (ISVOLT(i, data->uch_config)) { in vt8231_probe() 831 if (ISVOLT(i, data->uch_config)) { in vt8231_update_device() 851 if (ISTEMP(i, data->uch_config)) { in vt8231_update_device()
|
/linux-2.6.39/Documentation/hwmon/ |
D | vt1211 | 22 * uch_config: int Override the BIOS default universal channel (UCH)
|