diff options
author | Wolfram Sang <wsa+renesas@sang-engineering.com> | 2022-08-11 09:10:30 +0200 |
---|---|---|
committer | Wolfram Sang <wsa@kernel.org> | 2022-08-11 23:02:51 +0200 |
commit | ea1558ce149d286eaf2c0800a93b7efa2adda094 (patch) | |
tree | 6e20a55c06eae3c1f7343b2257f8339f341bd0d4 /drivers/i2c/busses/i2c-pxa.c | |
parent | 663bb7b9795fcd8b039b5a43990857580f4b816c (diff) | |
download | linux-ea1558ce149d286eaf2c0800a93b7efa2adda094.tar.gz linux-ea1558ce149d286eaf2c0800a93b7efa2adda094.tar.bz2 linux-ea1558ce149d286eaf2c0800a93b7efa2adda094.zip |
i2c: move drivers from strlcpy to strscpy
Follow the advice of the below link and prefer 'strscpy'. Conversion is
easy because no driver used the return value and has been done with a
simple sed invocation.
Link: https://lore.kernel.org/r/CAHk-=wgfRnXz0W3D37d01q3JFkr_i_uTL=V6A6G1oUZcprmknw@mail.gmail.com/
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: Wolfram Sang <wsa@kernel.org>
Diffstat (limited to 'drivers/i2c/busses/i2c-pxa.c')
-rw-r--r-- | drivers/i2c/busses/i2c-pxa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/busses/i2c-pxa.c b/drivers/i2c/busses/i2c-pxa.c index 690188a9ffff..b605b6e43cb9 100644 --- a/drivers/i2c/busses/i2c-pxa.c +++ b/drivers/i2c/busses/i2c-pxa.c @@ -1403,7 +1403,7 @@ static int i2c_pxa_probe(struct platform_device *dev) spin_lock_init(&i2c->lock); init_waitqueue_head(&i2c->wait); - strlcpy(i2c->adap.name, "pxa_i2c-i2c", sizeof(i2c->adap.name)); + strscpy(i2c->adap.name, "pxa_i2c-i2c", sizeof(i2c->adap.name)); i2c->clk = devm_clk_get(&dev->dev, NULL); if (IS_ERR(i2c->clk)) { |