ics932s401.c (310ec79210d754afe51e2e4a983e846b60179abd) | ics932s401.c (c3813d6af177fab19e322f3114b1f64fbcf08d71) |
---|---|
1/* 2 * A driver for the Integrated Circuits ICS932S401 3 * Copyright (C) 2008 IBM 4 * 5 * Author: Darrick J. Wong <djwong@us.ibm.com> 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by --- 111 unchanged lines hidden (view full) --- 120 .class = I2C_CLASS_HWMON, 121 .driver = { 122 .name = "ics932s401", 123 }, 124 .probe = ics932s401_probe, 125 .remove = ics932s401_remove, 126 .id_table = ics932s401_id, 127 .detect = ics932s401_detect, | 1/* 2 * A driver for the Integrated Circuits ICS932S401 3 * Copyright (C) 2008 IBM 4 * 5 * Author: Darrick J. Wong <djwong@us.ibm.com> 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by --- 111 unchanged lines hidden (view full) --- 120 .class = I2C_CLASS_HWMON, 121 .driver = { 122 .name = "ics932s401", 123 }, 124 .probe = ics932s401_probe, 125 .remove = ics932s401_remove, 126 .id_table = ics932s401_id, 127 .detect = ics932s401_detect, |
128 .address_data = &addr_data, | 128 .address_list = normal_i2c, |
129}; 130 131static struct ics932s401_data *ics932s401_update_device(struct device *dev) 132{ 133 struct i2c_client *client = to_i2c_client(dev); 134 struct ics932s401_data *data = i2c_get_clientdata(client); 135 unsigned long local_jiffies = jiffies; 136 int i, temp; --- 372 unchanged lines hidden --- | 129}; 130 131static struct ics932s401_data *ics932s401_update_device(struct device *dev) 132{ 133 struct i2c_client *client = to_i2c_client(dev); 134 struct ics932s401_data *data = i2c_get_clientdata(client); 135 unsigned long local_jiffies = jiffies; 136 int i, temp; --- 372 unchanged lines hidden --- |