w83l786ng.c (310ec79210d754afe51e2e4a983e846b60179abd) | w83l786ng.c (c3813d6af177fab19e322f3114b1f64fbcf08d71) |
---|---|
1/* 2 w83l786ng.c - Linux kernel driver for hardware monitoring 3 Copyright (c) 2007 Kevin Lo <kevlo@kevlo.org> 4 5 This program is free software; you can redistribute it and/or modify 6 it under the terms of the GNU General Public License as published by 7 the Free Software Foundation - version 2. 8 --- 154 unchanged lines hidden (view full) --- 163 .class = I2C_CLASS_HWMON, 164 .driver = { 165 .name = "w83l786ng", 166 }, 167 .probe = w83l786ng_probe, 168 .remove = w83l786ng_remove, 169 .id_table = w83l786ng_id, 170 .detect = w83l786ng_detect, | 1/* 2 w83l786ng.c - Linux kernel driver for hardware monitoring 3 Copyright (c) 2007 Kevin Lo <kevlo@kevlo.org> 4 5 This program is free software; you can redistribute it and/or modify 6 it under the terms of the GNU General Public License as published by 7 the Free Software Foundation - version 2. 8 --- 154 unchanged lines hidden (view full) --- 163 .class = I2C_CLASS_HWMON, 164 .driver = { 165 .name = "w83l786ng", 166 }, 167 .probe = w83l786ng_probe, 168 .remove = w83l786ng_remove, 169 .id_table = w83l786ng_id, 170 .detect = w83l786ng_detect, |
171 .address_data = &addr_data, | 171 .address_list = normal_i2c, |
172}; 173 174static u8 175w83l786ng_read_value(struct i2c_client *client, u8 reg) 176{ 177 return i2c_smbus_read_byte_data(client, reg); 178} 179 --- 611 unchanged lines hidden --- | 172}; 173 174static u8 175w83l786ng_read_value(struct i2c_client *client, u8 reg) 176{ 177 return i2c_smbus_read_byte_data(client, reg); 178} 179 --- 611 unchanged lines hidden --- |