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

rpmsg: char: Rename rpmsg_char_init to rpmsg_chrdev_init

To be coherent with the other functions which are prefixed by
rpmsg_chrdev, rename the rpmsg_char_init function.

Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Reviewed-by: Mathieu Poirier <mathieu.poirier@linaro.org>
Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
Link: https://lore.kernel.org/r/20210311140413.31725-2-arnaud.pouliquen@foss.st.com
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>

authored by

Arnaud Pouliquen and committed by
Bjorn Andersson
60d7b22d a38fd874

+2 -2
+2 -2
drivers/rpmsg/rpmsg_char.c
··· 543 543 }, 544 544 }; 545 545 546 - static int rpmsg_char_init(void) 546 + static int rpmsg_chrdev_init(void) 547 547 { 548 548 int ret; 549 549 ··· 569 569 570 570 return ret; 571 571 } 572 - postcore_initcall(rpmsg_char_init); 572 + postcore_initcall(rpmsg_chrdev_init); 573 573 574 574 static void rpmsg_chrdev_exit(void) 575 575 {