@@ -70,46 +70,6 @@ void board_late_initialize(void)
7070}
7171#endif /* CONFIG_BOARD_LATE_INITIALIZE */
7272
73- /****************************************************************************
74- * Name: board_app_initialize
75- *
76- * Description:
77- * Perform application specific initialization. This function is never
78- * called directly from application code, but only indirectly via the
79- * (non-standard) boardctl() interface using the command BOARDIOC_INIT.
80- *
81- * Input Parameters:
82- * arg - The boardctl() argument is passed to the board_app_initialize()
83- * implementation without modification. The argument has no
84- * meaning to NuttX; the meaning of the argument is a contract
85- * between the board-specific initialization logic and the
86- * matching application logic. The value cold be such things as a
87- * mode enumeration value, a set of DIP switch switch settings, a
88- * pointer to configuration data read from a file or serial FLASH,
89- * or whatever you would like to do with it. Every implementation
90- * should accept zero/NULL as a default configuration.
91- *
92- * Returned Value:
93- * Zero (OK) is returned on success; a negated errno value is returned on
94- * any failure to indicate the nature of the failure.
95- *
96- ****************************************************************************/
97-
98- #ifdef CONFIG_LIB_BOARDCTL
99- int board_app_initialize (uintptr_t arg )
100- {
101- /* Perform the arch late initialization */
102-
103- ceva_lateinitialize ();
104-
105- /* Perform the board late initialization */
106-
107- board_lateinitialize ();
108-
109- return 0 ;
110- }
111- #endif /* CONFIG_LIB_BOARDCTL */
112-
11373/****************************************************************************
11474 * Name: board_app_finalinitialize
11575 *
0 commit comments