eeprom.c (310ec79210d754afe51e2e4a983e846b60179abd) | eeprom.c (c3813d6af177fab19e322f3114b1f64fbcf08d71) |
---|---|
1/* 2 Copyright (C) 1998, 1999 Frodo Looijaard <frodol@dds.nl> and 3 Philip Edelbrock <phil@netroedge.com> 4 Copyright (C) 2003 Greg Kroah-Hartman <greg@kroah.com> 5 Copyright (C) 2003 IBM Corp. 6 Copyright (C) 2004 Jean Delvare <khali@linux-fr.org> 7 8 This program is free software; you can redistribute it and/or modify --- 218 unchanged lines hidden (view full) --- 227 .name = "eeprom", 228 }, 229 .probe = eeprom_probe, 230 .remove = eeprom_remove, 231 .id_table = eeprom_id, 232 233 .class = I2C_CLASS_DDC | I2C_CLASS_SPD, 234 .detect = eeprom_detect, | 1/* 2 Copyright (C) 1998, 1999 Frodo Looijaard <frodol@dds.nl> and 3 Philip Edelbrock <phil@netroedge.com> 4 Copyright (C) 2003 Greg Kroah-Hartman <greg@kroah.com> 5 Copyright (C) 2003 IBM Corp. 6 Copyright (C) 2004 Jean Delvare <khali@linux-fr.org> 7 8 This program is free software; you can redistribute it and/or modify --- 218 unchanged lines hidden (view full) --- 227 .name = "eeprom", 228 }, 229 .probe = eeprom_probe, 230 .remove = eeprom_remove, 231 .id_table = eeprom_id, 232 233 .class = I2C_CLASS_DDC | I2C_CLASS_SPD, 234 .detect = eeprom_detect, |
235 .address_data = &addr_data, | 235 .address_list = normal_i2c, |
236}; 237 238static int __init eeprom_init(void) 239{ 240 return i2c_add_driver(&eeprom_driver); 241} 242 243static void __exit eeprom_exit(void) --- 13 unchanged lines hidden --- | 236}; 237 238static int __init eeprom_init(void) 239{ 240 return i2c_add_driver(&eeprom_driver); 241} 242 243static void __exit eeprom_exit(void) --- 13 unchanged lines hidden --- |