mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-04-13 09:59:31 +00:00
i2c: stub: Don't let i2c adapters declare I2C_CLASS_SPD support if they support I2C_CLASS_HWMON
After removal of the legacy eeprom driver the only remaining I2C client device driver supporting I2C_CLASS_SPD is jc42. Because this driver also supports I2C_CLASS_HWMON, adapters don't have to declare support for I2C_CLASS_SPD if they support I2C_CLASS_HWMON. It's one step towards getting rid of I2C_CLASS_SPD mid-term. Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com> Signed-off-by: Wolfram Sang <wsa@kernel.org>
This commit is contained in:
parent
9fd12f3857
commit
c1cc7ccb0f
1 changed files with 1 additions and 1 deletions
|
@ -308,7 +308,7 @@ static const struct i2c_algorithm smbus_algorithm = {
|
||||||
|
|
||||||
static struct i2c_adapter stub_adapter = {
|
static struct i2c_adapter stub_adapter = {
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
.class = I2C_CLASS_HWMON | I2C_CLASS_SPD,
|
.class = I2C_CLASS_HWMON,
|
||||||
.algo = &smbus_algorithm,
|
.algo = &smbus_algorithm,
|
||||||
.name = "SMBus stub driver",
|
.name = "SMBus stub driver",
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue