From 6125e9376edc6de0ba3759655ec8a5ffd8a7909a Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sun, 21 Feb 2016 18:15:00 -0600 Subject: [PATCH] Standardize some naming in code section comments --- examples/adc/adc.h | 2 +- examples/can/can.h | 2 +- examples/i2schar/i2schar.h | 2 +- examples/mount/mount.h | 2 +- examples/netloop/netloop.h | 2 +- examples/nx/nx_internal.h | 2 +- examples/nxhello/nxhello.h | 2 +- examples/nximage/nximage.h | 2 +- examples/nxlines/nxlines.h | 2 +- examples/nxterm/nxterm_internal.h | 2 +- examples/nxtext/nxtext_internal.h | 2 +- examples/ostest/mqueue.c | 2 +- examples/ostest/ostest.h | 2 +- examples/ostest/timedmqueue.c | 2 +- examples/pipe/pipe.h | 2 +- examples/poll/poll_internal.h | 2 +- examples/pwm/pwm.h | 2 +- examples/qencoder/qe.h | 2 +- examples/touchscreen/tc.h | 2 +- examples/usbterm/usbterm.h | 2 +- examples/watchdog/watchdog.h | 2 +- graphics/traveler/src/trv_color.c | 2 +- graphics/traveler/src/trv_world.c | 2 +- include/fsutils/mksmartfs.h | 2 +- system/cu/cu.h | 2 +- system/zmodem/host/debug.h | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/examples/adc/adc.h b/examples/adc/adc.h index 693301687..9a1fbadb0 100644 --- a/examples/adc/adc.h +++ b/examples/adc/adc.h @@ -84,7 +84,7 @@ struct adc_state_s }; /**************************************************************************** - * Public Variables + * Public Data ****************************************************************************/ /**************************************************************************** diff --git a/examples/can/can.h b/examples/can/can.h index 27fd3111d..bdea0a627 100644 --- a/examples/can/can.h +++ b/examples/can/can.h @@ -79,7 +79,7 @@ ****************************************************************************/ /**************************************************************************** - * Public Variables + * Public Data ****************************************************************************/ /**************************************************************************** diff --git a/examples/i2schar/i2schar.h b/examples/i2schar/i2schar.h index 4fe24a282..c2de0f516 100644 --- a/examples/i2schar/i2schar.h +++ b/examples/i2schar/i2schar.h @@ -106,7 +106,7 @@ struct i2schar_state_s }; /**************************************************************************** - * Public Variables + * Public Data ****************************************************************************/ extern struct i2schar_state_s g_i2schar; diff --git a/examples/mount/mount.h b/examples/mount/mount.h index f1db3c305..b1506bd5b 100644 --- a/examples/mount/mount.h +++ b/examples/mount/mount.h @@ -80,7 +80,7 @@ ****************************************************************************/ /**************************************************************************** - * Public Variables + * Public Data ****************************************************************************/ extern const char g_source[]; /* Mount 'source' path */ diff --git a/examples/netloop/netloop.h b/examples/netloop/netloop.h index 05d3348d4..cc67a8489 100644 --- a/examples/netloop/netloop.h +++ b/examples/netloop/netloop.h @@ -87,7 +87,7 @@ ****************************************************************************/ /**************************************************************************** - * Public Variables + * Public Data ****************************************************************************/ /**************************************************************************** diff --git a/examples/nx/nx_internal.h b/examples/nx/nx_internal.h index 1358d5885..36a5c4d02 100644 --- a/examples/nx/nx_internal.h +++ b/examples/nx/nx_internal.h @@ -235,7 +235,7 @@ struct nxeg_state_s }; /**************************************************************************** - * Public Variables + * Public Data ****************************************************************************/ /* The connecton handle */ diff --git a/examples/nxhello/nxhello.h b/examples/nxhello/nxhello.h index 78b5f9edb..5d97a0ea9 100644 --- a/examples/nxhello/nxhello.h +++ b/examples/nxhello/nxhello.h @@ -154,7 +154,7 @@ struct nxhello_data_s }; /**************************************************************************** - * Public Variables + * Public Data ****************************************************************************/ /* NXHELLO state data */ diff --git a/examples/nximage/nximage.h b/examples/nximage/nximage.h index 141b657ef..ac23240ad 100644 --- a/examples/nximage/nximage.h +++ b/examples/nximage/nximage.h @@ -167,7 +167,7 @@ struct nximage_data_s }; /**************************************************************************** - * Public Variables + * Public Data ****************************************************************************/ /* NXIMAGE state data */ diff --git a/examples/nxlines/nxlines.h b/examples/nxlines/nxlines.h index fc8cfa74c..78e07e9c9 100644 --- a/examples/nxlines/nxlines.h +++ b/examples/nxlines/nxlines.h @@ -151,7 +151,7 @@ struct nxlines_data_s }; /**************************************************************************** - * Public Variables + * Public Data ****************************************************************************/ /* NXLINES state data */ diff --git a/examples/nxterm/nxterm_internal.h b/examples/nxterm/nxterm_internal.h index 43bbd945a..7b4a953d6 100644 --- a/examples/nxterm/nxterm_internal.h +++ b/examples/nxterm/nxterm_internal.h @@ -260,7 +260,7 @@ struct nxterm_state_s }; /**************************************************************************** - * Public Variables + * Public Data ****************************************************************************/ /* All example global variables are retained in a structure to minimize * the chance of name collisions. diff --git a/examples/nxtext/nxtext_internal.h b/examples/nxtext/nxtext_internal.h index ad9e9c267..e1b123d25 100644 --- a/examples/nxtext/nxtext_internal.h +++ b/examples/nxtext/nxtext_internal.h @@ -277,7 +277,7 @@ struct nxtext_state_s }; /**************************************************************************** - * Public Variables + * Public Data ****************************************************************************/ /* The connecton handler */ diff --git a/examples/ostest/mqueue.c b/examples/ostest/mqueue.c index b7974f8db..a070a9577 100644 --- a/examples/ostest/mqueue.c +++ b/examples/ostest/mqueue.c @@ -88,7 +88,7 @@ ****************************************************************************/ /**************************************************************************** - * Private Variables + * Private Data ****************************************************************************/ static mqd_t g_send_mqfd; diff --git a/examples/ostest/ostest.h b/examples/ostest/ostest.h index 84921b50d..f8467c865 100644 --- a/examples/ostest/ostest.h +++ b/examples/ostest/ostest.h @@ -96,7 +96,7 @@ ****************************************************************************/ /**************************************************************************** - * Public Variables + * Public Data ****************************************************************************/ /**************************************************************************** diff --git a/examples/ostest/timedmqueue.c b/examples/ostest/timedmqueue.c index b1bc4b2d2..fd0b007c5 100644 --- a/examples/ostest/timedmqueue.c +++ b/examples/ostest/timedmqueue.c @@ -82,7 +82,7 @@ ****************************************************************************/ /**************************************************************************** - * Private Variables + * Private Data ****************************************************************************/ static mqd_t g_send_mqfd; diff --git a/examples/pipe/pipe.h b/examples/pipe/pipe.h index 75eff1a21..c25252c8b 100644 --- a/examples/pipe/pipe.h +++ b/examples/pipe/pipe.h @@ -60,7 +60,7 @@ ****************************************************************************/ /**************************************************************************** - * Public Variables + * Public Data ****************************************************************************/ /**************************************************************************** diff --git a/examples/poll/poll_internal.h b/examples/poll/poll_internal.h index 7d8c3ecee..198f8ae44 100644 --- a/examples/poll/poll_internal.h +++ b/examples/poll/poll_internal.h @@ -86,7 +86,7 @@ ****************************************************************************/ /**************************************************************************** - * Public Variables + * Public Data ****************************************************************************/ /**************************************************************************** diff --git a/examples/pwm/pwm.h b/examples/pwm/pwm.h index 9be2dc0be..c1e1b02ab 100644 --- a/examples/pwm/pwm.h +++ b/examples/pwm/pwm.h @@ -93,7 +93,7 @@ ****************************************************************************/ /**************************************************************************** - * Public Variables + * Public Data ****************************************************************************/ /**************************************************************************** diff --git a/examples/qencoder/qe.h b/examples/qencoder/qe.h index fe1632b6f..344ae7b2f 100644 --- a/examples/qencoder/qe.h +++ b/examples/qencoder/qe.h @@ -62,7 +62,7 @@ struct qe_example_s }; /**************************************************************************** - * Public Variables + * Public Data ****************************************************************************/ extern struct qe_example_s g_qeexample; diff --git a/examples/touchscreen/tc.h b/examples/touchscreen/tc.h index f597bd548..6d141485d 100644 --- a/examples/touchscreen/tc.h +++ b/examples/touchscreen/tc.h @@ -96,7 +96,7 @@ ****************************************************************************/ /**************************************************************************** - * Public Variables + * Public Data ****************************************************************************/ /**************************************************************************** diff --git a/examples/usbterm/usbterm.h b/examples/usbterm/usbterm.h index 755c28046..25bf85a0d 100644 --- a/examples/usbterm/usbterm.h +++ b/examples/usbterm/usbterm.h @@ -126,7 +126,7 @@ struct usbterm_globals_s }; /**************************************************************************** - * Public Variables + * Public Data ****************************************************************************/ /* USB terminal state data */ diff --git a/examples/watchdog/watchdog.h b/examples/watchdog/watchdog.h index 69ee16e97..1f5e72404 100644 --- a/examples/watchdog/watchdog.h +++ b/examples/watchdog/watchdog.h @@ -90,7 +90,7 @@ ****************************************************************************/ /**************************************************************************** - * Public Variables + * Public Data ****************************************************************************/ /**************************************************************************** diff --git a/graphics/traveler/src/trv_color.c b/graphics/traveler/src/trv_color.c index 4c4825c07..3e25276ee 100644 --- a/graphics/traveler/src/trv_color.c +++ b/graphics/traveler/src/trv_color.c @@ -124,7 +124,7 @@ struct color_form_s #endif /**************************************************************************** - * Private Variables + * Private Data ****************************************************************************/ #if RGB_CUBE_SIZE < MIN_LUM_LEVELS diff --git a/graphics/traveler/src/trv_world.c b/graphics/traveler/src/trv_world.c index 118c9ca5e..624f3eb55 100644 --- a/graphics/traveler/src/trv_world.c +++ b/graphics/traveler/src/trv_world.c @@ -152,7 +152,7 @@ static const char g_world_palette_name[] = WORLD_PALETTE; static const char g_world_images_name[] = WORLD_IMAGES; /**************************************************************************** - * Private Variables + * Private Data ****************************************************************************/ /**************************************************************************** diff --git a/include/fsutils/mksmartfs.h b/include/fsutils/mksmartfs.h index 7e58a72bb..2b7832c76 100644 --- a/include/fsutils/mksmartfs.h +++ b/include/fsutils/mksmartfs.h @@ -52,7 +52,7 @@ ****************************************************************************/ /**************************************************************************** - * Public Variables + * Public Data ****************************************************************************/ #undef EXTERN diff --git a/system/cu/cu.h b/system/cu/cu.h index 768efa87c..51d3956fa 100644 --- a/system/cu/cu.h +++ b/system/cu/cu.h @@ -75,7 +75,7 @@ struct cu_globals_s }; /**************************************************************************** - * Public Variables + * Public Data ****************************************************************************/ /* terminal state data */ diff --git a/system/zmodem/host/debug.h b/system/zmodem/host/debug.h index 1db58d339..6de8b6de0 100644 --- a/system/zmodem/host/debug.h +++ b/system/zmodem/host/debug.h @@ -60,7 +60,7 @@ ****************************************************************************/ /**************************************************************************** - * Public Variables + * Public Data ****************************************************************************/ /****************************************************************************