Rename board_led_initialize to board_autoled_initiaize

This commit is contained in:
Gregory Nutt 2015-11-01 09:04:02 -06:00
parent e772c56ef6
commit 148d5fcffd
3 changed files with 7 additions and 7 deletions

2
arch

@ -1 +1 @@
Subproject commit 47cd8e4cd255d884fe88840e39d6903bcbf4cf6c
Subproject commit 848fedb13d7dca0bfcd85e3e302d0deea23e9ce0

@ -1 +1 @@
Subproject commit b782406b1e8144d295f3c34ae2926c4f7c10fdd0
Subproject commit 2ae6dba193311d26f3778c2624bf2190d300a72e

View File

@ -362,7 +362,7 @@ void board_lcd_uninitialize(void);
#endif
/****************************************************************************
* Name: board_led_initialize
* Name: board_autoled_initialize
*
* Description:
* This functions is called very early in initialization to perform board-
@ -370,12 +370,12 @@ void board_lcd_uninitialize(void);
* things as, for example, configure GPIO pins to drive the LEDs and also
* putting the LEDs in their correct initial state.
*
* NOTE: In most architectures, board_led_initialize() is called from
* NOTE: In most architectures, board_autoled_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 and, hence, the usage of the name
* board_led_initialize is deprecated.
* board_autoled_initialize is deprecated.
*
* WARNING: This interface name will eventually be removed; do not use it
* in new board ports. New implementations should use the naming
@ -391,9 +391,9 @@ void board_lcd_uninitialize(void);
****************************************************************************/
#ifdef CONFIG_ARCH_LEDS
void board_led_initialize(void);
void board_autoled_initialize(void);
#else
# define board_led_initialize()
# define board_autoled_initialize()
#endif
/****************************************************************************