w83l785ts.c (310ec79210d754afe51e2e4a983e846b60179abd) | w83l785ts.c (c3813d6af177fab19e322f3114b1f64fbcf08d71) |
---|---|
1/* 2 * w83l785ts.c - Part of lm_sensors, Linux kernel modules for hardware 3 * monitoring 4 * Copyright (C) 2003-2009 Jean Delvare <khali@linux-fr.org> 5 * 6 * Inspired from the lm83 driver. The W83L785TS-S is a sensor chip made 7 * by Winbond. It reports a single external temperature with a 1 deg 8 * resolution and a 3 deg accuracy. Datasheet can be obtained from --- 94 unchanged lines hidden (view full) --- 103 .class = I2C_CLASS_HWMON, 104 .driver = { 105 .name = "w83l785ts", 106 }, 107 .probe = w83l785ts_probe, 108 .remove = w83l785ts_remove, 109 .id_table = w83l785ts_id, 110 .detect = w83l785ts_detect, | 1/* 2 * w83l785ts.c - Part of lm_sensors, Linux kernel modules for hardware 3 * monitoring 4 * Copyright (C) 2003-2009 Jean Delvare <khali@linux-fr.org> 5 * 6 * Inspired from the lm83 driver. The W83L785TS-S is a sensor chip made 7 * by Winbond. It reports a single external temperature with a 1 deg 8 * resolution and a 3 deg accuracy. Datasheet can be obtained from --- 94 unchanged lines hidden (view full) --- 103 .class = I2C_CLASS_HWMON, 104 .driver = { 105 .name = "w83l785ts", 106 }, 107 .probe = w83l785ts_probe, 108 .remove = w83l785ts_remove, 109 .id_table = w83l785ts_id, 110 .detect = w83l785ts_detect, |
111 .address_data = &addr_data, | 111 .address_list = normal_i2c, |
112}; 113 114/* 115 * Client data (each client gets its own) 116 */ 117 118struct w83l785ts_data { 119 struct device *hwmon_dev; --- 207 unchanged lines hidden --- | 112}; 113 114/* 115 * Client data (each client gets its own) 116 */ 117 118struct w83l785ts_data { 119 struct device *hwmon_dev; --- 207 unchanged lines hidden --- |