artik053: s/s5j_gpioinitialize/board_gpio_initialize/
authorHeesub Shin <heesub.shin@samsung.com>
Mon, 10 Apr 2017 01:55:05 +0000 (10:55 +0900)
committerHeesub Shin <heesub.shin@samsung.com>
Tue, 18 Apr 2017 03:02:12 +0000 (12:02 +0900)
The name of s5j_gpioinitialize() seems so ambiguous that does not
represent its characteristics of board-specific. Let's rename it for
better consistency, removing the prefix 's5j'.

Change-Id: Ieeef41afa84b27d79498dc26f680c831dce5881b
Signed-off-by: Heesub Shin <heesub.shin@samsung.com>
os/arch/arm/src/artik053/src/artik053_boot.c

index 0dd2675..fe02a7f 100644 (file)
  ****************************************************************************/
 
 /****************************************************************************
- * Name: s5j_gpioinitialize
+ * Name: board_gpio_initialize
  *
  * Description:
  *  Expose board dependent GPIOs
  ****************************************************************************/
-static void s5j_gpioinitialize(void)
+static void board_gpio_initialize(void)
 {
        /* List of available GPIO IDs */
 
@@ -203,6 +203,6 @@ void board_initialize(void)
        board_pwm_setup();
 #endif
 
-       s5j_gpioinitialize();
+       board_gpio_initialize();
 }
 #endif /* CONFIG_BOARD_INITIALIZE */