diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html index 1cab777e7ee..440487e3341 100644 --- a/Documentation/NuttxPortingGuide.html +++ b/Documentation/NuttxPortingGuide.html @@ -12,7 +12,7 @@

NuttX RTOS Porting Guide

-

Last Updated: February 27, 2015

+

Last Updated: February 28, 2015

@@ -4087,17 +4087,32 @@ void board_led_off(int led);

diff --git a/include/nuttx/board.h b/include/nuttx/board.h index c923445ac5c..55aa85b60cf 100644 --- a/include/nuttx/board.h +++ b/include/nuttx/board.h @@ -139,9 +139,16 @@ void board_initialize(void); * things as, for example, configure GPIO pins to drive the LEDs and also * putting the LEDs in their correct initial state. * - * In most architectures, board_led_initialize() is called fromo board- - * specific initialization logic. But there are a few architectures where - * this initialization function is called from shared chip logic. + * NOTE: In most architectures, board_led_initialize() is called from + * board-specific initialization logic. But there are a few architectures + * where this initialization function is still called from common chip + * architecture logic. This interface is not, however, a common board + * interface in any event. + * + * WARNING: This interface name will eventually be removed; do not use it + * in new board ports. New implementations should use the naming + * conventions for "Microprocessor-Specific Interfaces" or the "Board- + * Specific Interfaces" as described above. * * Input Parameters: * None