mirror of
https://github.com/apache/nuttx.git
synced 2026-05-22 22:20:01 +08:00
Fix spark/stm32_composite.c: board_composite_connect cannot be static
This commit is contained in:
committed by
Gregory Nutt
parent
28eb253401
commit
69fcf3e849
@@ -554,10 +554,10 @@ static FAR void *board_composite1_connect(int port)
|
||||
}
|
||||
|
||||
return composite_initialize(2, dev);
|
||||
}
|
||||
#else
|
||||
return NULL;
|
||||
#endif
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
* Public Functions
|
||||
@@ -598,7 +598,7 @@ int board_composite_initialize(int port)
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
static FAR void *board_composite_connect(int port, int configid)
|
||||
FAR void *board_composite_connect(int port, int configid)
|
||||
{
|
||||
if (configid == 0)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user