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:
Gregory Nutt
2019-02-04 16:51:48 -06:00
parent a2e62f557d
commit 7a2bb1f727
8 changed files with 28 additions and 28 deletions
+1 -1
View File
@@ -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).
*
****************************************************************************/
+5 -5
View File
@@ -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)
+1 -1
View File
@@ -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)