stmpe-i2c.c (1a6e4b7415339e3b11a87cff0d701b8a2e55f062) stmpe-i2c.c (1cda2394e95415f1469ab8eaffd081395e112551)
1/*
2 * ST Microelectronics MFD: stmpe's i2c client specific driver
3 *
4 * Copyright (C) ST-Ericsson SA 2010
5 * Copyright (C) ST Microelectronics SA 2011
6 *
7 * License Terms: GNU General Public License, version 2
8 * Author: Rabin Vincent <rabin.vincent@stericsson.com> for ST-Ericsson

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

66static int __devexit stmpe_i2c_remove(struct i2c_client *i2c)
67{
68 struct stmpe *stmpe = dev_get_drvdata(&i2c->dev);
69
70 return stmpe_remove(stmpe);
71}
72
73static const struct i2c_device_id stmpe_i2c_id[] = {
1/*
2 * ST Microelectronics MFD: stmpe's i2c client specific driver
3 *
4 * Copyright (C) ST-Ericsson SA 2010
5 * Copyright (C) ST Microelectronics SA 2011
6 *
7 * License Terms: GNU General Public License, version 2
8 * Author: Rabin Vincent <rabin.vincent@stericsson.com> for ST-Ericsson

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

66static int __devexit stmpe_i2c_remove(struct i2c_client *i2c)
67{
68 struct stmpe *stmpe = dev_get_drvdata(&i2c->dev);
69
70 return stmpe_remove(stmpe);
71}
72
73static const struct i2c_device_id stmpe_i2c_id[] = {
74 { "stmpe610", STMPE610 },
74 { "stmpe811", STMPE811 },
75 { "stmpe1601", STMPE1601 },
76 { "stmpe2401", STMPE2401 },
77 { "stmpe2403", STMPE2403 },
78 { }
79};
80MODULE_DEVICE_TABLE(i2c, stmpe_id);
81

--- 26 unchanged lines hidden ---
75 { "stmpe811", STMPE811 },
76 { "stmpe1601", STMPE1601 },
77 { "stmpe2401", STMPE2401 },
78 { "stmpe2403", STMPE2403 },
79 { }
80};
81MODULE_DEVICE_TABLE(i2c, stmpe_id);
82

--- 26 unchanged lines hidden ---