Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5304032c authored by Wolfram Sang's avatar Wolfram Sang
Browse files

i2c: i2c-s3c2410: 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: default avatarWolfram Sang <wsa@the-dreams.de>
Cc: Ben Dooks <ben-linux@fluff.org>
Cc: Kukjin Kim <kgene.kim@samsung.com>
parent 75b6c4b6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1106,7 +1106,7 @@ static int s3c24xx_i2c_probe(struct platform_device *pdev)
	i2c->adap.owner   = THIS_MODULE;
	i2c->adap.algo    = &s3c24xx_i2c_algorithm;
	i2c->adap.retries = 2;
	i2c->adap.class   = I2C_CLASS_HWMON | I2C_CLASS_SPD;
	i2c->adap.class   = I2C_CLASS_HWMON | I2C_CLASS_SPD | I2C_CLASS_DEPRECATED;
	i2c->tx_setup     = 50;

	init_waitqueue_head(&i2c->wait);