diff options
author | Wolfram Sang <wsa+renesas@sang-engineering.com> | 2019-12-06 01:23:22 +0100 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2019-12-10 23:15:09 +0100 |
commit | 2c2f00ab1641895183488ff2bce53c415344fb87 (patch) | |
tree | c3f709384b4338e3b003573440f9659b33b4d13b /include | |
parent | e42617b825f8073569da76dc4510bfa019b1c35a (diff) | |
download | linux-2c2f00ab1641895183488ff2bce53c415344fb87.tar.bz2 |
i2c: remove i2c_new_dummy() API
All in-kernel users have been converted to
{devm_}i2c_new_dummy_device(). Remove the old API.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Reviewed-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
Tested-by: Luca Ceresoli <luca@lucaceresoli.net>
Reviewed-by: Luca Ceresoli <luca@lucaceresoli.net>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/i2c.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/linux/i2c.h b/include/linux/i2c.h index d2f786706657..d1baf8d57536 100644 --- a/include/linux/i2c.h +++ b/include/linux/i2c.h @@ -466,12 +466,6 @@ i2c_new_probed_device(struct i2c_adapter *adap, /* Common custom probe functions */ extern int i2c_probe_func_quick_read(struct i2c_adapter *adap, unsigned short addr); -/* For devices that use several addresses, use i2c_new_dummy() to make - * client handles for the extra addresses. - */ -extern struct i2c_client * -i2c_new_dummy(struct i2c_adapter *adap, u16 address); - extern struct i2c_client * i2c_new_dummy_device(struct i2c_adapter *adapter, u16 address); |