diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2014-02-10 05:04:11 -0500 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2014-03-28 03:55:04 -0400 |
commit | a9965d73fdc9684bb55ae8be4f0ddc8067dca1c8 (patch) | |
tree | b80ac7204b7bafdfc30f37fccf73d350fc575be6 /drivers/i2c | |
parent | 85fff8b53812396385ca2be39d856c6f1bf5bf0a (diff) |
i2c: i2c-xiic: 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>
Diffstat (limited to 'drivers/i2c')
-rw-r--r-- | drivers/i2c/busses/i2c-xiic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/busses/i2c-xiic.c b/drivers/i2c/busses/i2c-xiic.c index 28107502517f..7731f1795869 100644 --- a/drivers/i2c/busses/i2c-xiic.c +++ b/drivers/i2c/busses/i2c-xiic.c | |||
@@ -684,7 +684,7 @@ static const struct i2c_algorithm xiic_algorithm = { | |||
684 | static struct i2c_adapter xiic_adapter = { | 684 | static struct i2c_adapter xiic_adapter = { |
685 | .owner = THIS_MODULE, | 685 | .owner = THIS_MODULE, |
686 | .name = DRIVER_NAME, | 686 | .name = DRIVER_NAME, |
687 | .class = I2C_CLASS_HWMON | I2C_CLASS_SPD, | 687 | .class = I2C_CLASS_HWMON | I2C_CLASS_SPD | I2C_CLASS_DEPRECATED, |
688 | .algo = &xiic_algorithm, | 688 | .algo = &xiic_algorithm, |
689 | }; | 689 | }; |
690 | 690 | ||