Lines Matching refs:man_id
1395 int man_id, chip_id, config1, config2, convrate; in lm90_detect() local
1401 man_id = i2c_smbus_read_byte_data(client, LM90_REG_R_MAN_ID); in lm90_detect()
1405 if (man_id < 0 || chip_id < 0 || config1 < 0 || convrate < 0) in lm90_detect()
1408 if (man_id == 0x01 || man_id == 0x5C || man_id == 0x41) { in lm90_detect()
1416 && man_id == 0x01) { /* National Semiconductor */ in lm90_detect()
1441 && man_id == 0x41) { /* Analog Devices */ in lm90_detect()
1465 if (man_id == 0x4D) { /* Maxim */ in lm90_detect()
1476 man_id = i2c_smbus_read_byte_data(client, in lm90_detect()
1482 if (emerg < 0 || man_id < 0 || emerg2 < 0 || status2 < 0) in lm90_detect()
1498 if (chip_id == man_id in lm90_detect()
1500 && (config1 & 0x1F) == (man_id & 0x0F) in lm90_detect()
1548 && man_id == 0x5C) { /* Winbond/Nuvoton */ in lm90_detect()
1562 && man_id == 0xA1) { /* NXP Semiconductor/Philips */ in lm90_detect()
1571 && man_id == 0x47) { /* GMT */ in lm90_detect()
1578 && man_id == 0x55) { /* Texas Instruments */ in lm90_detect()
1594 "chip_id=0x%02X)\n", address, man_id, chip_id); in lm90_detect()