Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

i2c: digicolor: reword according to newest specification

Change the wording of this driver wrt. the newest I2C v7 and SMBus 3.2
specifications and replace "master/slave" with more appropriate terms.

Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Reviewed-by: Andi Shyti <andi.shyti@kernel.org>
Signed-off-by: Andi Shyti <andi.shyti@kernel.org>

authored by

Wolfram Sang and committed by
Andi Shyti
4c77db83 68e4c181

+3 -3
+3 -3
drivers/i2c/busses/i2c-digicolor.c
··· 281 281 } 282 282 283 283 static const struct i2c_algorithm dc_i2c_algorithm = { 284 - .master_xfer = dc_i2c_xfer, 285 - .functionality = dc_i2c_func, 284 + .xfer = dc_i2c_xfer, 285 + .functionality = dc_i2c_func, 286 286 }; 287 287 288 288 static int dc_i2c_probe(struct platform_device *pdev) ··· 372 372 module_platform_driver(dc_i2c_driver); 373 373 374 374 MODULE_AUTHOR("Baruch Siach <baruch@tkos.co.il>"); 375 - MODULE_DESCRIPTION("Conexant Digicolor I2C master driver"); 375 + MODULE_DESCRIPTION("Conexant Digicolor I2C controller driver"); 376 376 MODULE_LICENSE("GPL v2");