max1619.c (310ec79210d754afe51e2e4a983e846b60179abd) max1619.c (c3813d6af177fab19e322f3114b1f64fbcf08d71)
1/*
2 * max1619.c - Part of lm_sensors, Linux kernel modules for hardware
3 * monitoring
4 * Copyright (C) 2003-2004 Alexey Fisher <fishor@mail.ru>
5 * Jean Delvare <khali@linux-fr.org>
6 *
7 * Based on the lm90 driver. The MAX1619 is a sensor chip made by Maxim.
8 * It reports up to two temperatures (its own plus up to

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

108 .class = I2C_CLASS_HWMON,
109 .driver = {
110 .name = "max1619",
111 },
112 .probe = max1619_probe,
113 .remove = max1619_remove,
114 .id_table = max1619_id,
115 .detect = max1619_detect,
1/*
2 * max1619.c - Part of lm_sensors, Linux kernel modules for hardware
3 * monitoring
4 * Copyright (C) 2003-2004 Alexey Fisher <fishor@mail.ru>
5 * Jean Delvare <khali@linux-fr.org>
6 *
7 * Based on the lm90 driver. The MAX1619 is a sensor chip made by Maxim.
8 * It reports up to two temperatures (its own plus up to

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

108 .class = I2C_CLASS_HWMON,
109 .driver = {
110 .name = "max1619",
111 },
112 .probe = max1619_probe,
113 .remove = max1619_remove,
114 .id_table = max1619_id,
115 .detect = max1619_detect,
116 .address_data = &addr_data,
116 .address_list = normal_i2c,
117};
118
119/*
120 * Client data (each client gets its own)
121 */
122
123struct max1619_data {
124 struct device *hwmon_dev;

--- 254 unchanged lines hidden ---
117};
118
119/*
120 * Client data (each client gets its own)
121 */
122
123struct max1619_data {
124 struct device *hwmon_dev;

--- 254 unchanged lines hidden ---