adm1025.c (310ec79210d754afe51e2e4a983e846b60179abd) adm1025.c (c3813d6af177fab19e322f3114b1f64fbcf08d71)
1/*
2 * adm1025.c
3 *
4 * Copyright (C) 2000 Chen-Yuan Wu <gwu@esoft.com>
5 * Copyright (C) 2003-2009 Jean Delvare <khali@linux-fr.org>
6 *
7 * The ADM1025 is a sensor chip made by Analog Devices. It reports up to 6
8 * voltages (including its own power source) and up to two temperatures

--- 123 unchanged lines hidden (view full) ---

132 .class = I2C_CLASS_HWMON,
133 .driver = {
134 .name = "adm1025",
135 },
136 .probe = adm1025_probe,
137 .remove = adm1025_remove,
138 .id_table = adm1025_id,
139 .detect = adm1025_detect,
1/*
2 * adm1025.c
3 *
4 * Copyright (C) 2000 Chen-Yuan Wu <gwu@esoft.com>
5 * Copyright (C) 2003-2009 Jean Delvare <khali@linux-fr.org>
6 *
7 * The ADM1025 is a sensor chip made by Analog Devices. It reports up to 6
8 * voltages (including its own power source) and up to two temperatures

--- 123 unchanged lines hidden (view full) ---

132 .class = I2C_CLASS_HWMON,
133 .driver = {
134 .name = "adm1025",
135 },
136 .probe = adm1025_probe,
137 .remove = adm1025_remove,
138 .id_table = adm1025_id,
139 .detect = adm1025_detect,
140 .address_data = &addr_data,
140 .address_list = normal_i2c,
141};
142
143/*
144 * Client data (each client gets its own)
145 */
146
147struct adm1025_data {
148 struct device *hwmon_dev;

--- 463 unchanged lines hidden ---
141};
142
143/*
144 * Client data (each client gets its own)
145 */
146
147struct adm1025_data {
148 struct device *hwmon_dev;

--- 463 unchanged lines hidden ---