2
0
mirror of https://github.com/lm-sensors/lm-sensors synced 2025-08-31 14:25:39 +00:00

The adt7463 may not have in4 (#2119)

git-svn-id: http://lm-sensors.org/svn/lm-sensors/trunk@4133 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
Jean Delvare
2006-09-02 07:49:35 +00:00
parent 6ff8a21179
commit e944415f25
3 changed files with 5 additions and 2 deletions

View File

@@ -1561,13 +1561,14 @@ void print_lm85(const sensors_chip_name *name)
char *label;
double cur, min, max;
int alarms, alarm_mask = 0, valid;
int is85, is1027, is6d100;
int is85, is1027, is7463, is6d100;
is85 = !strcmp(name->prefix,"lm85")
|| !strcmp(name->prefix,"lm85b")
|| !strcmp(name->prefix,"lm85c") ;
is1027 = !strcmp(name->prefix,"adm1027")
|| !strcmp(name->prefix,"adt7463") ;
is7463 = !strcmp(name->prefix, "adt7463");
is6d100 = !strcmp(name->prefix,"emc6d100") ;
if (!sensors_get_feature(*name,SENSORS_LM85_ALARMS,&cur))
@@ -1649,7 +1650,7 @@ void print_lm85(const sensors_chip_name *name)
if (is1027) { printf(alarm_mask&LM85_ALARM_IN4?" MASKED":""); }
putchar( '\n' );
}
} else
} else if (!is7463)
printf("ERROR: Can't get IN4 data!\n");
free(label);