i2c: i2c-xiic: Drop class based scanning to improve bootup time

This driver has been flagged to drop class based instantiation. The removal
improves boot-up time and is unneeded for embedded controllers. Users have been
warned to switch for some time now, so we can actually do the removal. Keep the
DEPRECATED flag, so the core can inform users that the behaviour finally
changed now. After another transition period, this flag can go, too.
While we are here, remove the indentation for the array setup because
such things always break after some time.

Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
This commit is contained in:
Wolfram Sang 2014-07-10 13:46:36 +02:00
parent 6025189a57
commit 4db5beed9c

View File

@ -677,15 +677,15 @@ static u32 xiic_func(struct i2c_adapter *adap)
} }
static const struct i2c_algorithm xiic_algorithm = { static const struct i2c_algorithm xiic_algorithm = {
.master_xfer = xiic_xfer, .master_xfer = xiic_xfer,
.functionality = xiic_func, .functionality = xiic_func,
}; };
static struct i2c_adapter xiic_adapter = { static struct i2c_adapter xiic_adapter = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
.name = DRIVER_NAME, .name = DRIVER_NAME,
.class = I2C_CLASS_HWMON | I2C_CLASS_SPD | I2C_CLASS_DEPRECATED, .class = I2C_CLASS_DEPRECATED,
.algo = &xiic_algorithm, .algo = &xiic_algorithm,
}; };