diff options
Diffstat (limited to 'Documentation/i2c')
-rw-r--r-- | Documentation/i2c/porting-clients | 3 | ||||
-rw-r--r-- | Documentation/i2c/writing-clients | 5 |
2 files changed, 3 insertions, 5 deletions
diff --git a/Documentation/i2c/porting-clients b/Documentation/i2c/porting-clients index 184fac2377aa..64c610bf2fbc 100644 --- a/Documentation/i2c/porting-clients +++ b/Documentation/i2c/porting-clients | |||
@@ -109,6 +109,9 @@ Technical changes: | |||
109 | there is a MODULE_LICENSE() line, at the bottom of the file | 109 | there is a MODULE_LICENSE() line, at the bottom of the file |
110 | (after MODULE_AUTHOR() and MODULE_DESCRIPTION(), in this order). | 110 | (after MODULE_AUTHOR() and MODULE_DESCRIPTION(), in this order). |
111 | 111 | ||
112 | * [Driver] The flags field of the i2c_driver structure is gone. | ||
113 | I2C_DF_NOTIFY is now the default behavior. | ||
114 | |||
112 | Coding policy: | 115 | Coding policy: |
113 | 116 | ||
114 | * [Copyright] Use (C), not (c), for copyright. | 117 | * [Copyright] Use (C), not (c), for copyright. |
diff --git a/Documentation/i2c/writing-clients b/Documentation/i2c/writing-clients index d19993cc0604..59d2c169cd61 100644 --- a/Documentation/i2c/writing-clients +++ b/Documentation/i2c/writing-clients | |||
@@ -27,7 +27,6 @@ address. | |||
27 | static struct i2c_driver foo_driver = { | 27 | static struct i2c_driver foo_driver = { |
28 | .owner = THIS_MODULE, | 28 | .owner = THIS_MODULE, |
29 | .name = "Foo version 2.3 driver", | 29 | .name = "Foo version 2.3 driver", |
30 | .flags = I2C_DF_NOTIFY, | ||
31 | .attach_adapter = &foo_attach_adapter, | 30 | .attach_adapter = &foo_attach_adapter, |
32 | .detach_client = &foo_detach_client, | 31 | .detach_client = &foo_detach_client, |
33 | .command = &foo_command /* may be NULL */ | 32 | .command = &foo_command /* may be NULL */ |
@@ -36,10 +35,6 @@ static struct i2c_driver foo_driver = { | |||
36 | The name field must match the driver name, including the case. It must not | 35 | The name field must match the driver name, including the case. It must not |
37 | contain spaces, and may be up to 31 characters long. | 36 | contain spaces, and may be up to 31 characters long. |
38 | 37 | ||
39 | Don't worry about the flags field; just put I2C_DF_NOTIFY into it. This | ||
40 | means that your driver will be notified when new adapters are found. | ||
41 | This is almost always what you want. | ||
42 | |||
43 | All other fields are for call-back functions which will be explained | 38 | All other fields are for call-back functions which will be explained |
44 | below. | 39 | below. |
45 | 40 | ||