Revision 88c47fd9 core/src/aos_sssp.c

View differences:

core/src/aos_sssp.c
308 308
 * @param[out]  buffer    Buffer to write the serialized message to.
309 309
 * @param[in]   message   The message to be serialized.
310 310
 */
311
aos_status_t _serializeBcbMessage(uint8_t* buffer, aos_ssspbcbmessage_t message)
311
static aos_status_t _serializeBcbMessage(uint8_t* buffer, aos_ssspbcbmessage_t message)
312 312
{
313 313
  aosDbgCheck(buffer != NULL);
314 314

  
......
342 342
 * @param[out]  message   Message object to be filled.
343 343
 * @param[in]   buffer    Buffer holding the serialized message.
344 344
 */
345
aos_status_t _deserializeBcbMessage(aos_ssspbcbmessage_t* message, uint8_t* buffer)
345
static aos_status_t _deserializeBcbMessage(aos_ssspbcbmessage_t* message, uint8_t* buffer)
346 346
{
347 347
  aosDbgCheck(message != NULL);
348 348
  aosDbgCheck(buffer != NULL);
......
379 379
 *
380 380
 * @param[in] msidata   Pointer to the temporary data structure used during MSI.
381 381
 */
382
void _msiOutro(aos_ssspmsidata_t* msidata)
382
static void _msiOutro(aos_ssspmsidata_t* msidata)
383 383
{
384 384
  aosDbgCheck(msidata != NULL);
385 385

  

Also available in: Unified diff