aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/ports
diff options
context:
space:
mode:
authortfateba <tfateba@35acf78f-673a-0410-8e92-d51de3d6d3f4>2017-04-26 19:49:26 +0000
committertfateba <tfateba@35acf78f-673a-0410-8e92-d51de3d6d3f4>2017-04-26 19:49:26 +0000
commitb4c2a57e5233184ba6d8e53895babaa106dbac67 (patch)
tree1e74c21a634552c6eb7ed237028ebf1725eb4932 /os/hal/ports
parent5dd35df33497363ed2eaee5fca848e48cca90319 (diff)
downloadChibiOS-b4c2a57e5233184ba6d8e53895babaa106dbac67.tar.gz
ChibiOS-b4c2a57e5233184ba6d8e53895babaa106dbac67.tar.bz2
ChibiOS-b4c2a57e5233184ba6d8e53895babaa106dbac67.zip
Change the file name , comments and macro on the hearder file.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10192 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/ports')
-rw-r--r--os/hal/ports/AVR/hal_pal_lld.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/os/hal/ports/AVR/hal_pal_lld.h b/os/hal/ports/AVR/hal_pal_lld.h
index 708cf5168..b78f93f81 100644
--- a/os/hal/ports/AVR/hal_pal_lld.h
+++ b/os/hal/ports/AVR/hal_pal_lld.h
@@ -15,22 +15,22 @@
*/
/**
- * @file AVR/pal_lld.h
+ * @file hal_pal_lld.h
* @brief AVR GPIO low level driver header.
*
* @addtogroup PAL
* @{
*/
-#ifndef _PAL_LLD_H_
-#define _PAL_LLD_H_
+#ifndef PAL_LLD_H
+#define PAL_LLD_H
#include "avr_pins.h"
#if HAL_USE_PAL || defined(__DOXYGEN__)
/*===========================================================================*/
-/* Unsupported modes and specific modes */
+/* Unsupported modes and specific modes. */
/*===========================================================================*/
#undef PAL_MODE_INPUT_PULLDOWN
@@ -229,7 +229,7 @@ typedef volatile avr_gpio_registers_t * ioportid_t;
/*===========================================================================*/
/* Implementation, some of the following macros could be implemented as */
-/* functions, if so please put them in pal_lld.c. */
+/* functions, if so please put them in hal_pal_lld.c. */
/*===========================================================================*/
/**
@@ -326,6 +326,6 @@ extern "C" {
#endif /* HAL_USE_PAL */
-#endif /* _PAL_LLD_H_ */
+#endif /* HAL_PAL_LLD_H */
/** @} */