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

i2c: pcf8584: Change pcf_doAdress() to pcf_send_address()

Change name of pcf_doAddress() function to pcf_send_address() to be
more in line with the kernel functions naming.

Suggested-by: Andi Shyti <andi.shyti@kernel.org>
Signed-off-by: Cezar Chiru <chiru.cezar.89@gmail.com>
Signed-off-by: Andi Shyti <andi.shyti@kernel.org>
Link: https://lore.kernel.org/r/20251023120043.8661-4-chiru.cezar.89@gmail.com

authored by

Cezar Chiru and committed by
Andi Shyti
890a12d2 e7ba3035

+2 -2
+2 -2
drivers/i2c/algos/i2c-algo-pcf.c
··· 253 253 } 254 254 255 255 256 - static void pcf_doAddress(struct i2c_algo_pcf_data *adap, 256 + static void pcf_send_address(struct i2c_algo_pcf_data *adap, 257 257 struct i2c_msg *msg) 258 258 { 259 259 unsigned char addr = i2c_8bit_addr_from_msg(msg); ··· 286 286 int ret; 287 287 288 288 pmsg = &msgs[i]; 289 - pcf_doAddress(adap, pmsg); 289 + pcf_send_address(adap, pmsg); 290 290 291 291 /* Send START */ 292 292 if (i == 0)