diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2014-02-10 05:04:05 -0500 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2014-03-05 11:17:06 -0500 |
commit | 878f00b082e0a32988b425c097116971475ffdd9 (patch) | |
tree | 6f9f35ad408df472042b7d4b3f658523686642ac | |
parent | 8e57c7831cf453ec0b78324cbaf510f740d83729 (diff) |
i2c: i2c-ocores: deprecate class based instantiation
Warn users that class based instantiation is going away soon in favour
of more robust probing and faster bootup times.
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Acked-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | drivers/i2c/busses/i2c-ocores.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/busses/i2c-ocores.c b/drivers/i2c/busses/i2c-ocores.c index 80e06fa45720..1f6369f14fb6 100644 --- a/drivers/i2c/busses/i2c-ocores.c +++ b/drivers/i2c/busses/i2c-ocores.c | |||
@@ -246,7 +246,7 @@ static const struct i2c_algorithm ocores_algorithm = { | |||
246 | static struct i2c_adapter ocores_adapter = { | 246 | static struct i2c_adapter ocores_adapter = { |
247 | .owner = THIS_MODULE, | 247 | .owner = THIS_MODULE, |
248 | .name = "i2c-ocores", | 248 | .name = "i2c-ocores", |
249 | .class = I2C_CLASS_HWMON | I2C_CLASS_SPD, | 249 | .class = I2C_CLASS_HWMON | I2C_CLASS_SPD | I2C_CLASS_DEPRECATED, |
250 | .algo = &ocores_algorithm, | 250 | .algo = &ocores_algorithm, |
251 | }; | 251 | }; |
252 | 252 | ||