mirror of
https://github.com/apache/nuttx.git
synced 2026-06-04 06:42:32 +08:00
graphics/nxmu/nxmu_start.c: Fix a naming collision introduced with the last commit. Ye olde nx_start that started the NX graphics is now nxmu_start().
This commit is contained in:
@@ -337,7 +337,7 @@ FAR void *board_composite_connect(int port, int configid);
|
||||
* initialization, then this board interface should be provided.
|
||||
*
|
||||
* This is an internal OS interface. It is invoked by graphics sub-system
|
||||
* initialization logic (nx_start()) or from the LCD framebuffer driver
|
||||
* initialization logic (nxmu_start()) or from the LCD framebuffer driver
|
||||
* (when the NX server is not used).
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
@@ -270,13 +270,13 @@ int nx_runinstance(FAR const char *mqname, FAR NX_DRIVERTYPE *dev);
|
||||
#define nx_run(dev) nx_runinstance(NX_DEFAULT_SERVER_MQNAME, dev)
|
||||
|
||||
/****************************************************************************
|
||||
* Name: nx_start
|
||||
* Name: nxmu_start
|
||||
*
|
||||
* Description:
|
||||
* nx_start() provides a wrapper function to simplify and standardize the
|
||||
* starting of the NX server.
|
||||
* nxmu_start() provides a wrapper function to simplify and standardize
|
||||
* the starting of the NX server.
|
||||
*
|
||||
* nx_start() can be called (indirectly) from applications via the
|
||||
* nxmu_start() can be called (indirectly) from applications via the
|
||||
* boardctl() interface with the BOARDIOC_NX_START command.
|
||||
*
|
||||
* Input Parameters:
|
||||
@@ -292,7 +292,7 @@ int nx_runinstance(FAR const char *mqname, FAR NX_DRIVERTYPE *dev);
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
int nx_start(void);
|
||||
int nxmu_start(void);
|
||||
|
||||
/****************************************************************************
|
||||
* Name: nx_connectinstance (and nx_connect macro)
|
||||
|
||||
@@ -113,7 +113,7 @@
|
||||
* DESCRIPTION: Start the NX servier
|
||||
* ARG: None
|
||||
* CONFIGURATION: CONFIG_NX
|
||||
* DEPENDENCIES: Base graphics logic provides nx_start()
|
||||
* DEPENDENCIES: Base graphics logic provides nxmu_start()
|
||||
*/
|
||||
|
||||
#define BOARDIOC_INIT _BOARDIOC(0x0001)
|
||||
|
||||
Reference in New Issue
Block a user