From b565e28da3cc292966c35138439302ae19537713 Mon Sep 17 00:00:00 2001 From: raiden00pl Date: Fri, 27 Oct 2023 12:56:33 +0200 Subject: [PATCH] Kconfigs: rename {Rpmsg|rpmsg} to RPMGS --- drivers/clk/Kconfig | 4 ++-- drivers/input/Kconfig | 2 +- drivers/ioexpander/Kconfig | 6 +++--- drivers/net/Kconfig | 6 +++--- drivers/power/supply/Kconfig | 6 +++--- drivers/rptun/Kconfig | 2 +- drivers/sensors/Kconfig | 4 ++-- drivers/serial/Kconfig | 6 +++--- drivers/syslog/Kconfig | 12 ++++++------ drivers/timers/Kconfig | 8 ++++---- drivers/usrsock/Kconfig | 8 ++++---- fs/rpmsgfs/Kconfig | 4 ++-- net/rpmsg/Kconfig | 14 +++++++------- 13 files changed, 41 insertions(+), 41 deletions(-) diff --git a/drivers/clk/Kconfig b/drivers/clk/Kconfig index bd50daea17..832247e320 100644 --- a/drivers/clk/Kconfig +++ b/drivers/clk/Kconfig @@ -8,11 +8,11 @@ menuconfig CLK if CLK config CLK_RPMSG - bool "rpmsg clk driver" + bool "RPMSG clk driver" default n depends on RPTUN ---help--- - Rpmsg clk are proxy/master pairs clock that operate clks between client and + RPMSG clk are proxy/master pairs clock that operate clks between client and server processor. endif diff --git a/drivers/input/Kconfig b/drivers/input/Kconfig index 33fd33ec6b..5c07626d4e 100644 --- a/drivers/input/Kconfig +++ b/drivers/input/Kconfig @@ -45,7 +45,7 @@ config INPUT_UINPUT Enable support virtual input device driver config UINPUT_RPMSG - bool "Enable uinput rpmsg" + bool "Enable uinput RPMSG" depends on INPUT_UINPUT depends on RPTUN default n diff --git a/drivers/ioexpander/Kconfig b/drivers/ioexpander/Kconfig index 6f5928e0f0..77c9b2eb96 100644 --- a/drivers/ioexpander/Kconfig +++ b/drivers/ioexpander/Kconfig @@ -15,17 +15,17 @@ config IOEXPANDER if IOEXPANDER config IOEXPANDER_RPMSG - bool "IO expander rpmsg server and client" + bool "IO expander RPMSG server and client" depends on RPTUN default n select IOEXPANDER_INT_ENABLE ---help--- - This settings enable ioexpander rpmsg server and client. + This settings enable ioexpander RPMSG server and client. if IOEXPANDER_RPMSG config IOEXPANDER_RPMSG_INT_NCALLBACKS - int "number of ioexpander rpmsg interrupt callbacks" + int "number of ioexpander RPMSG interrupt callbacks" default 32 ---help--- This set the IO expander number in interrupt callbacks. diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index d394c44eb0..d1f87797ab 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig @@ -59,7 +59,7 @@ config NET_RPMSG_DRV depends on RPTUN select ARCH_HAVE_NETDEV_STATISTICS ---help--- - Use the rpmsg as net device, transfer packet between remoteproc. + Use the RPMSG as net device, transfer packet between remoteproc. if NET_RPMSG_DRV @@ -70,10 +70,10 @@ config NET_RPMSG_PRIORITY The priority for net rmpsg task. config NET_RPMSG_STACKSIZE - int "net rpmsg stack size" + int "net RPMSG stack size" default DEFAULT_TASK_STACKSIZE ---help--- - The stack size allocated for the net rpmsg task. + The stack size allocated for the net RPMSG task. endif # NET_RPMSG_DRV diff --git a/drivers/power/supply/Kconfig b/drivers/power/supply/Kconfig index ea9e5b9251..07b529f3ce 100644 --- a/drivers/power/supply/Kconfig +++ b/drivers/power/supply/Kconfig @@ -67,13 +67,13 @@ config REGULATOR_GPIO control to regulator. config REGULATOR_RPMSG - bool "Regulator rpmsg driver support" + bool "Regulator RPMSG driver support" depends on RPTUN default n ---help--- - The rpmsg regulator driver implements the common regulator APIs, inside which + The RPMSG regulator driver implements the common regulator APIs, inside which the regulator operations are sent from the client to the remote device via - the rpmsg channel. The remote device(namely server) is responsible for + the RPMSG channel. The remote device(namely server) is responsible for the parse and the completion. menuconfig REGULATOR_ACT8945A diff --git a/drivers/rptun/Kconfig b/drivers/rptun/Kconfig index 327b20a5f0..add132c8f3 100644 --- a/drivers/rptun/Kconfig +++ b/drivers/rptun/Kconfig @@ -56,7 +56,7 @@ config RPTUN_PING bool "rptun ping support" default n ---help--- - This is for rptun debugging & profiling, create ping rpmsg + This is for rptun debugging & profiling, create ping RPMSG channel, user can use it to get send/recv speed & latency. endif # RPTUN diff --git a/drivers/sensors/Kconfig b/drivers/sensors/Kconfig index 76094fba17..43a04341d7 100644 --- a/drivers/sensors/Kconfig +++ b/drivers/sensors/Kconfig @@ -18,11 +18,11 @@ config USENSOR Allow application to register user sensor by /dev/usensor. config SENSORS_RPMSG - bool "Sensor rpmsg Support" + bool "Sensor RPMSG Support" default n depends on RPTUN ---help--- - Allow application to read or control remote sensor device by rpmsg. + Allow application to read or control remote sensor device by RPMSG. config SENSORS_GPS bool "GPS Support" diff --git a/drivers/serial/Kconfig b/drivers/serial/Kconfig index 6b21c8e624..026e20d027 100644 --- a/drivers/serial/Kconfig +++ b/drivers/serial/Kconfig @@ -72,7 +72,7 @@ config MCU_SERIAL default n config RPMSG_UART - bool "UART rpmsg support" + bool "UART RPMSG support" default n depends on RPTUN select ARCH_HAVE_SERIAL_TERMIOS @@ -82,11 +82,11 @@ config RPMSG_UART select SERIAL_IFLOWCONTROL config RPMSG_UART_CONSOLE - bool "UART rpmsg console support" + bool "UART RPMSG console support" default n depends on RPMSG_UART ---help--- - Register the UART rpmsg device as /dev/console so that is will be used + Register the UART RPMSG device as /dev/console so that is will be used as the console device. NOTE: support for this option must be implemented in the board logic by setting the \"isconsole\" argument in the uart_rpmsg_init() function to true. diff --git a/drivers/syslog/Kconfig b/drivers/syslog/Kconfig index 3af6fb8144..1addc71fa2 100644 --- a/drivers/syslog/Kconfig +++ b/drivers/syslog/Kconfig @@ -230,7 +230,7 @@ config SYSLOG_RPMSG depends on SCHED_WORKQUEUE default n ---help--- - Use the rpmsg as a SYSLOG output device, send message to remote proc. + Use the RPMSG as a SYSLOG output device, send message to remote proc. config SYSLOG_STREAM bool "Log to stream" @@ -275,9 +275,9 @@ endif # RAMLOG_SYSLOG if SYSLOG_RPMSG config SYSLOG_RPMSG_SERVER_NAME - string "The name of Syslog Rpmsg Server" + string "The name of Syslog RPMSG Server" ---help--- - The proc name of rpmsg server. Client sends message to + The proc name of RPMSG server. Client sends message to specified name of remote proc. config SYSLOG_RPMSG_WORK_DELAY @@ -285,7 +285,7 @@ config SYSLOG_RPMSG_WORK_DELAY default 100 config SYSLOG_RPMSG_CHARDEV - bool "SYSLOG rpmsg character device" + bool "SYSLOG RPMSG character device" default SYSLOG_RPMSG_WORK_DELAY != 0 endif # SYSLOG_RPMSG @@ -295,10 +295,10 @@ config SYSLOG_RPMSG_SERVER default n depends on RPTUN ---help--- - Use rpmsg to receive message from remote proc. + Use RPMSG to receive message from remote proc. config SYSLOG_RPMSG_SERVER_CHARDEV - bool "SYSLOG rpmsg server character device" + bool "SYSLOG RPMSG server character device" default n menuconfig SYSLOG_FILE diff --git a/drivers/timers/Kconfig b/drivers/timers/Kconfig index 381d503195..fffbe51fa4 100644 --- a/drivers/timers/Kconfig +++ b/drivers/timers/Kconfig @@ -355,20 +355,20 @@ config RX8010SJ_I2C_FREQUENCY endif # RTC_RX8010SJ config RTC_RPMSG - bool "Rpmsg RTC Driver" + bool "RPMSG RTC Driver" default n depends on RPTUN select ARCH_HAVE_RTC_SUBSECONDS config RTC_RPMSG_SERVER - bool "The RTC Rpmsg Role" + bool "The RTC RPMSG Role" depends on RPTUN config RTC_RPMSG_SERVER_NAME - string "The name of RTC Rpmsg Server" + string "The name of RTC RPMSG Server" depends on RTC_RPMSG ---help--- - The proc name of rtc server. Client requests time from + The proc name of RTC server. Client requests time from specified name of remote proc. endif # RTC diff --git a/drivers/usrsock/Kconfig b/drivers/usrsock/Kconfig index 0a43f1304b..25d48d8d6a 100644 --- a/drivers/usrsock/Kconfig +++ b/drivers/usrsock/Kconfig @@ -17,9 +17,9 @@ config NET_USRSOCK_DEVICE Will export /dev/usrsock device node for usrsock request/response operations config NET_USRSOCK_RPMSG - bool "rpmsg transport" + bool "RPMSG transport" ---help--- - Will send usrsock request or receive usrsock response via rpmsg channel directly + Will send usrsock request or receive usrsock response via RPMSG channel directly config NET_USRSOCK_CUSTOM bool "Customerized interface" @@ -29,7 +29,7 @@ config NET_USRSOCK_CUSTOM endchoice config NET_USRSOCK_RPMSG_CPUNAME - string "The cpuname on which the rpmsg server runs" + string "The cpuname on which the RPMSG server runs" depends on NET_USRSOCK_RPMSG endmenu @@ -41,7 +41,7 @@ config NET_USRSOCK_RPMSG_SERVER default n depends on NET && RPTUN ---help--- - Enable usrsock through rpmsg channel. + Enable usrsock through RPMSG channel. if NET_USRSOCK_RPMSG_SERVER diff --git a/fs/rpmsgfs/Kconfig b/fs/rpmsgfs/Kconfig index 457686d506..f4c88cc747 100644 --- a/fs/rpmsgfs/Kconfig +++ b/fs/rpmsgfs/Kconfig @@ -8,7 +8,7 @@ config FS_RPMSGFS default n depends on RPTUN ---help--- - Use rpmsg file system to mount remote directories to local. + Use RPMSG file system to mount remote directories to local. This the method for user to use remote file like own core. config FS_RPMSGFS_SERVER @@ -16,4 +16,4 @@ config FS_RPMSGFS_SERVER default n depends on RPTUN ---help--- - Initialize rpmsg file system server automatically. + Initialize RPMSG file system server automatically. diff --git a/net/rpmsg/Kconfig b/net/rpmsg/Kconfig index d8aa5e1ff4..b876c61651 100644 --- a/net/rpmsg/Kconfig +++ b/net/rpmsg/Kconfig @@ -3,29 +3,29 @@ # see the file kconfig-language.txt in the NuttX tools repository. # -menu "Rpmsg Socket Support" +menu "RPMSG Socket Support" depends on NET config NET_RPMSG - bool "Rpmsg domain (remote) sockets" + bool "RPMSG domain (remote) sockets" depends on RPTUN default n ---help--- - Enable or disable Rpmsg (aka remote) sockets. + Enable or disable RPMSG (aka remote) sockets. if NET_RPMSG config NET_RPMSG_RXBUF_SIZE - int "Rpmsg socket rx buffer size" + int "RPMSG socket rx buffer size" default 1024 ---help--- - Socket rpmsg rx buffer size, for recv slowly + Socket RPMSG rx buffer size, for recv slowly config NET_RPMSG_NPOLLWAITERS - int "Rpmsg socket number of poll waiters" + int "RPMSG socket number of poll waiters" default 4 ---help--- - Socket rpmsg number of poll waiters + Socket RPMSG number of poll waiters endif # NET_RPMSG