aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/i2c
diff options
context:
space:
mode:
authorWolfram Sang <wsa@the-dreams.de>2014-02-10 11:04:08 +0100
committerWolfram Sang <wsa@the-dreams.de>2014-03-28 08:54:45 +0100
commit85fff8b53812396385ca2be39d856c6f1bf5bf0a (patch)
tree68cd7c1cab222f443cdaff1eab7f28d06688ccb3 /drivers/i2c
parenti2c: i2c-mv64xxx: deprecate class based instantiation (diff)
downloadlinux-dev-85fff8b53812396385ca2be39d856c6f1bf5bf0a.tar.xz
linux-dev-85fff8b53812396385ca2be39d856c6f1bf5bf0a.zip
i2c: i2c-sirf: 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> Cc: Barry Song <baohua@kernel.org>
Diffstat (limited to 'drivers/i2c')
-rw-r--r--drivers/i2c/busses/i2c-sirf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/busses/i2c-sirf.c b/drivers/i2c/busses/i2c-sirf.c
index 6784f7f527a4..8e3be7ed0586 100644
--- a/drivers/i2c/busses/i2c-sirf.c
+++ b/drivers/i2c/busses/i2c-sirf.c
@@ -312,7 +312,7 @@ static int i2c_sirfsoc_probe(struct platform_device *pdev)
goto out;
}
adap = &siic->adapter;
- adap->class = I2C_CLASS_HWMON;
+ adap->class = I2C_CLASS_HWMON | I2C_CLASS_DEPRECATED;
mem_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
siic->base = devm_ioremap_resource(&pdev->dev, mem_res);