aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Documentation/i2c/porting-clients4
-rw-r--r--Documentation/i2c/writing-clients6
2 files changed, 8 insertions, 2 deletions
diff --git a/Documentation/i2c/porting-clients b/Documentation/i2c/porting-clients
index 856274fc8e9f..f997c72302a2 100644
--- a/Documentation/i2c/porting-clients
+++ b/Documentation/i2c/porting-clients
@@ -125,6 +125,10 @@ Technical changes:
125 125
126* [Driver] The flags field of the i2c_driver structure is gone. 126* [Driver] The flags field of the i2c_driver structure is gone.
127 I2C_DF_NOTIFY is now the default behavior. 127 I2C_DF_NOTIFY is now the default behavior.
128 The i2c_driver structure has a driver member, which is itself a
129 structure, those owner and name members should be initialized to
130 THIS_MODULE and a driver name string, respectively. i2c_driver
131 itself has no name member anymore.
128 132
129Coding policy: 133Coding policy:
130 134
diff --git a/Documentation/i2c/writing-clients b/Documentation/i2c/writing-clients
index 59d2c169cd61..95eed2b25339 100644
--- a/Documentation/i2c/writing-clients
+++ b/Documentation/i2c/writing-clients
@@ -25,8 +25,10 @@ routines, a client structure specific information like the actual I2C
25address. 25address.
26 26
27static struct i2c_driver foo_driver = { 27static struct i2c_driver foo_driver = {
28 .owner = THIS_MODULE, 28 .driver = {
29 .name = "Foo version 2.3 driver", 29 .owner = THIS_MODULE,
30 .name = "foo",
31 },
30 .attach_adapter = &foo_attach_adapter, 32 .attach_adapter = &foo_attach_adapter,
31 .detach_client = &foo_detach_client, 33 .detach_client = &foo_detach_client,
32 .command = &foo_command /* may be NULL */ 34 .command = &foo_command /* may be NULL */