Lines Matching refs:man_id
1128 int man_id, chip_id, config1, config2, convrate; in lm90_detect() local
1134 man_id = i2c_smbus_read_byte_data(client, LM90_REG_R_MAN_ID); in lm90_detect()
1138 if (man_id < 0 || chip_id < 0 || config1 < 0 || convrate < 0) in lm90_detect()
1141 if (man_id == 0x01 || man_id == 0x5C || man_id == 0x41) { in lm90_detect()
1149 && man_id == 0x01) { /* National Semiconductor */ in lm90_detect()
1174 && man_id == 0x41) { /* Analog Devices */ in lm90_detect()
1198 if (man_id == 0x4D) { /* Maxim */ in lm90_detect()
1209 man_id = i2c_smbus_read_byte_data(client, in lm90_detect()
1215 if (emerg < 0 || man_id < 0 || emerg2 < 0 || status2 < 0) in lm90_detect()
1231 if (chip_id == man_id in lm90_detect()
1233 && (config1 & 0x1F) == (man_id & 0x0F) in lm90_detect()
1281 && man_id == 0x5C) { /* Winbond/Nuvoton */ in lm90_detect()
1295 && man_id == 0xA1) { /* NXP Semiconductor/Philips */ in lm90_detect()
1304 && man_id == 0x47) { /* GMT */ in lm90_detect()
1314 "chip_id=0x%02X)\n", address, man_id, chip_id); in lm90_detect()