Hello, On Wed, Jun 23, 2021 at 05:36:43PM +0900, Kwon Tae-young wrote: > @@ -1395,7 +1386,7 @@ static int i2c_imx_probe(struct platform_device *pdev) > platform_get_device_id(pdev)->driver_data; > > /* Setup i2c_imx driver structure */ > - strlcpy(i2c_imx->adapter.name, pdev->name, sizeof(i2c_imx->adapter.name)); > + strscpy(i2c_imx->adapter.name, pdev->name, sizeof(i2c_imx->adapter.name)); TIL about strscpy. I'm not yet sure if I like it better than strlcpy in this case, but the usage is correct for sure. Reviewed-by: Uwe Kleine-König > i2c_imx->adapter.owner = THIS_MODULE; > i2c_imx->adapter.algo = &i2c_imx_algo; > i2c_imx->adapter.dev.parent = &pdev->dev; > -- > 2.17.1 > > > -- Pengutronix e.K. | Uwe Kleine-König | Industrial Linux Solutions | https://www.pengutronix.de/ |