This is an automated email from the ASF dual-hosted git repository.

acassis pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git


The following commit(s) were added to refs/heads/master by this push:
     new 083eb5e99 Fix the wrong comment banner
083eb5e99 is described below

commit 083eb5e9936b38d303a07b5576974d178a478ec1
Author: Xiang Xiao <xiaoxi...@xiaomi.com>
AuthorDate: Sun Dec 3 22:39:02 2023 +0800

    Fix the wrong comment banner
    
    "Private Type"->"Private Types"
    "Public Data Type"->"Public Types"
    
    Signed-off-by: Xiang Xiao <xiaoxi...@xiaomi.com>
---
 benchmarks/spinlock_bench/spinlock_bench.c    | 2 +-
 examples/fmsynth/keyboard_main.c              | 2 +-
 examples/fmsynth/mmlplayer_main.c             | 2 +-
 lte/alt1250/alt1250_atcmd.c                   | 2 +-
 lte/alt1250/alt1250_atcmd.h                   | 2 +-
 lte/alt1250/alt1250_postproc.h                | 2 +-
 lte/alt1250/alt1250_reset_seq.c               | 2 +-
 lte/alt1250/alt1250_select.c                  | 2 +-
 lte/alt1250/alt1250_socket.h                  | 2 +-
 lte/alt1250/alt1250_usockevent.h              | 2 +-
 lte/alt1250/alt1250_usockif.h                 | 2 +-
 lte/alt1250/usock_handlers/alt1250_fwupdate.h | 2 +-
 lte/alt1250/usock_handlers/alt1250_sms.h      | 2 +-
 testing/drivertest/drivertest_block.c         | 2 +-
 testing/drivertest/drivertest_rtc.c           | 2 +-
 testing/drivertest/drivertest_touchpanel.c    | 2 +-
 testing/memstress/memorystress_main.c         | 2 +-
 17 files changed, 17 insertions(+), 17 deletions(-)

diff --git a/benchmarks/spinlock_bench/spinlock_bench.c 
b/benchmarks/spinlock_bench/spinlock_bench.c
index 47a33786e..a6014ca9a 100644
--- a/benchmarks/spinlock_bench/spinlock_bench.c
+++ b/benchmarks/spinlock_bench/spinlock_bench.c
@@ -36,7 +36,7 @@
 #define THREAD_NUM CONFIG_SPINLOCK_MULTITHREAD
 
 /****************************************************************************
- * Private Type
+ * Private Types
  ****************************************************************************/
 
 struct thread_parmeter_s
diff --git a/examples/fmsynth/keyboard_main.c b/examples/fmsynth/keyboard_main.c
index 0cf434a6a..9c197eb70 100644
--- a/examples/fmsynth/keyboard_main.c
+++ b/examples/fmsynth/keyboard_main.c
@@ -49,7 +49,7 @@
 #define APP_DEFAULT_VOL (400)
 
 /****************************************************************************
- * Private Data Type
+ * Private Types
  ****************************************************************************/
 
 struct app_options
diff --git a/examples/fmsynth/mmlplayer_main.c 
b/examples/fmsynth/mmlplayer_main.c
index c5e11f5a0..e24a0021e 100644
--- a/examples/fmsynth/mmlplayer_main.c
+++ b/examples/fmsynth/mmlplayer_main.c
@@ -52,7 +52,7 @@
 #define APP_DEFAULT_VOL (1000)
 
 /****************************************************************************
- * Private Data Type
+ * Private Types
  ****************************************************************************/
 
 struct app_options
diff --git a/lte/alt1250/alt1250_atcmd.c b/lte/alt1250/alt1250_atcmd.c
index 472256ee6..33b280dba 100644
--- a/lte/alt1250/alt1250_atcmd.c
+++ b/lte/alt1250/alt1250_atcmd.c
@@ -44,7 +44,7 @@
  ****************************************************************************/
 
 /****************************************************************************
- * Private Data Type
+ * Private Types
  ****************************************************************************/
 
 struct atcmd_postprocarg_t
diff --git a/lte/alt1250/alt1250_atcmd.h b/lte/alt1250/alt1250_atcmd.h
index 86c6cb7f8..62cc56d1e 100644
--- a/lte/alt1250/alt1250_atcmd.h
+++ b/lte/alt1250/alt1250_atcmd.h
@@ -38,7 +38,7 @@
 #include <lte/lte_lwm2m.h>
 
 /****************************************************************************
- * Public Data Type
+ * Public Types
  ****************************************************************************/
 
 typedef int (*atreply_parser_t)(FAR char *reply, int len, void *arg);
diff --git a/lte/alt1250/alt1250_postproc.h b/lte/alt1250/alt1250_postproc.h
index 3afdc1207..25cd32a2e 100644
--- a/lte/alt1250/alt1250_postproc.h
+++ b/lte/alt1250/alt1250_postproc.h
@@ -32,7 +32,7 @@
 #include "alt1250_usockif.h"
 
 /****************************************************************************
- * Public Data Type
+ * Public Types
  ****************************************************************************/
 
 typedef CODE int (*postproc_hdlr_t)(FAR struct alt1250_s *dev,
diff --git a/lte/alt1250/alt1250_reset_seq.c b/lte/alt1250/alt1250_reset_seq.c
index 07bc1bdf1..e7eba13da 100644
--- a/lte/alt1250/alt1250_reset_seq.c
+++ b/lte/alt1250/alt1250_reset_seq.c
@@ -43,7 +43,7 @@
 #include "alt1250_evt.h"
 
 /****************************************************************************
- * Private Data Type
+ * Private Types
  ****************************************************************************/
 
 struct reset_arg_s
diff --git a/lte/alt1250/alt1250_select.c b/lte/alt1250/alt1250_select.c
index 51bfa01bc..ecac3771a 100644
--- a/lte/alt1250/alt1250_select.c
+++ b/lte/alt1250/alt1250_select.c
@@ -50,7 +50,7 @@
 #define WRITESET_BIT            (1 << 1)
 
 /****************************************************************************
- * Private Data Type
+ * Private Types
  ****************************************************************************/
 
 struct select_params_s
diff --git a/lte/alt1250/alt1250_socket.h b/lte/alt1250/alt1250_socket.h
index 8a5ddc9b5..64409e96c 100644
--- a/lte/alt1250/alt1250_socket.h
+++ b/lte/alt1250/alt1250_socket.h
@@ -174,7 +174,7 @@
   (usockif_sendtxready((d)->usockfd, USOCKET_USOCKID(s)))
 
 /****************************************************************************
- * Public Data Type
+ * Public Types
  ****************************************************************************/
 
 struct alt1250_s;
diff --git a/lte/alt1250/alt1250_usockevent.h b/lte/alt1250/alt1250_usockevent.h
index 82ca8422e..6309ee85b 100644
--- a/lte/alt1250/alt1250_usockevent.h
+++ b/lte/alt1250/alt1250_usockevent.h
@@ -53,7 +53,7 @@
 #define REP_SEND_DACK_RXREADY W_CONTAINER_FREE(11)
 
 /****************************************************************************
- * Public Data Type
+ * Public Types
  ****************************************************************************/
 
 typedef int (*usrsock_reqhandler_t)(FAR struct alt1250_s *dev,
diff --git a/lte/alt1250/alt1250_usockif.h b/lte/alt1250/alt1250_usockif.h
index a6802c483..df33f4cc7 100644
--- a/lte/alt1250/alt1250_usockif.h
+++ b/lte/alt1250/alt1250_usockif.h
@@ -57,7 +57,7 @@
           usockif_sendevent((fff), (iii), USRSOCK_EVENT_RECVFROM_AVAIL)
 
 /****************************************************************************
- * Public Data Type
+ * Public Types
  ****************************************************************************/
 
 union usrsock_requests_u
diff --git a/lte/alt1250/usock_handlers/alt1250_fwupdate.h 
b/lte/alt1250/usock_handlers/alt1250_fwupdate.h
index b4fa0a364..23b232668 100644
--- a/lte/alt1250/usock_handlers/alt1250_fwupdate.h
+++ b/lte/alt1250/usock_handlers/alt1250_fwupdate.h
@@ -35,7 +35,7 @@
 #define LTE_IMAGE_PERT_SIZE (256)
 
 /****************************************************************************
- * Public Data Type
+ * Public Types
  ****************************************************************************/
 
 struct delta_header_s
diff --git a/lte/alt1250/usock_handlers/alt1250_sms.h 
b/lte/alt1250/usock_handlers/alt1250_sms.h
index 477e7d924..8f0707a80 100644
--- a/lte/alt1250/usock_handlers/alt1250_sms.h
+++ b/lte/alt1250/usock_handlers/alt1250_sms.h
@@ -54,7 +54,7 @@
 #define SMS_SET_MSG_INDEX(info, x) ((info)->msg_index = (x))
 
 /****************************************************************************
- * Public Data Type
+ * Public Types
  ****************************************************************************/
 
 enum sms_state_e
diff --git a/testing/drivertest/drivertest_block.c 
b/testing/drivertest/drivertest_block.c
index b5a7fd31b..df440d61b 100644
--- a/testing/drivertest/drivertest_block.c
+++ b/testing/drivertest/drivertest_block.c
@@ -47,7 +47,7 @@
 #include "driver/driver.h"
 
 /****************************************************************************
- * Private Type
+ * Private Types
  ****************************************************************************/
 
 /****************************************************************************
diff --git a/testing/drivertest/drivertest_rtc.c 
b/testing/drivertest/drivertest_rtc.c
index 3152072c9..27d9985b9 100644
--- a/testing/drivertest/drivertest_rtc.c
+++ b/testing/drivertest/drivertest_rtc.c
@@ -66,7 +66,7 @@
     } while (0)
 
 /****************************************************************************
- * Private Type
+ * Private Types
  ****************************************************************************/
 
 struct rtc_state_s
diff --git a/testing/drivertest/drivertest_touchpanel.c 
b/testing/drivertest/drivertest_touchpanel.c
index 639c210ca..a548e7356 100644
--- a/testing/drivertest/drivertest_touchpanel.c
+++ b/testing/drivertest/drivertest_touchpanel.c
@@ -45,7 +45,7 @@
 #include <lv_porting/lv_porting.h>
 
 /****************************************************************************
- * Private Type
+ * Private Types
  ****************************************************************************/
 
 /****************************************************************************
diff --git a/testing/memstress/memorystress_main.c 
b/testing/memstress/memorystress_main.c
index 980c4aafb..dd8ff01e3 100644
--- a/testing/memstress/memorystress_main.c
+++ b/testing/memstress/memorystress_main.c
@@ -52,7 +52,7 @@
   } while (0)
 
 /****************************************************************************
- * Private Type
+ * Private Types
  ****************************************************************************/
 
 enum memorystress_rwerror_e

Reply via email to