mirror of
https://github.com/apache/nuttx.git
synced 2026-06-02 17:48:54 +08:00
Fix some spacing problems
This commit is contained in:
+1
-1
Submodule arch updated: 0c8200c21f...cc863e71f9
+1
-1
Submodule configs updated: 87c0e8d612...dbc09272e2
@@ -937,7 +937,7 @@ static inline int mio283qt2_hwinitialize(FAR struct mio283qt2_dev_s *priv)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*************************************************************************************
|
/**************************************************************************************
|
||||||
* Public Functions
|
* Public Functions
|
||||||
**************************************************************************************/
|
**************************************************************************************/
|
||||||
|
|
||||||
|
|||||||
@@ -833,7 +833,7 @@ static inline int mio283qt9a_hwinitialize(FAR struct mio283qt9a_dev_s *priv)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*************************************************************************************
|
/**************************************************************************************
|
||||||
* Public Functions
|
* Public Functions
|
||||||
**************************************************************************************/
|
**************************************************************************************/
|
||||||
|
|
||||||
|
|||||||
@@ -1079,7 +1079,7 @@ static inline int ra8875_hwinitialize(FAR struct ra8875_dev_s *priv)
|
|||||||
return OK;
|
return OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*************************************************************************************
|
/**************************************************************************************
|
||||||
* Public Functions
|
* Public Functions
|
||||||
**************************************************************************************/
|
**************************************************************************************/
|
||||||
|
|
||||||
|
|||||||
@@ -1284,7 +1284,7 @@ static inline int ssd1289_hwinitialize(FAR struct ssd1289_dev_s *priv)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*************************************************************************************
|
/**************************************************************************************
|
||||||
* Public Functions
|
* Public Functions
|
||||||
**************************************************************************************/
|
**************************************************************************************/
|
||||||
|
|
||||||
|
|||||||
@@ -161,7 +161,7 @@ static void pipecommon_pollnotify(FAR struct pipe_dev_s *dev, pollevent_t events
|
|||||||
|
|
||||||
FAR struct pipe_dev_s *pipecommon_allocdev(void)
|
FAR struct pipe_dev_s *pipecommon_allocdev(void)
|
||||||
{
|
{
|
||||||
struct pipe_dev_s *dev;
|
FAR struct pipe_dev_s *dev;
|
||||||
|
|
||||||
/* Allocate a private structure to manage the pipe */
|
/* Allocate a private structure to manage the pipe */
|
||||||
|
|
||||||
|
|||||||
@@ -1443,6 +1443,3 @@ void uart_connected(FAR uart_dev_t *dev, bool connected)
|
|||||||
irqrestore(flags);
|
irqrestore(flags);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -708,10 +708,10 @@ static int u16550_attach(struct uart_dev_s *dev)
|
|||||||
*
|
*
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
static void u16550_detach(struct uart_dev_s *dev)
|
static void u16550_detach(FAR struct uart_dev_s *dev)
|
||||||
{
|
{
|
||||||
#ifndef CONFIG_SUPPRESS_SERIAL_INTS
|
#ifndef CONFIG_SUPPRESS_SERIAL_INTS
|
||||||
struct u16550_s *priv = (struct u16550_s*)dev->priv;
|
FAR struct u16550_s *priv = (struct u16550_s*)dev->priv;
|
||||||
#ifndef CONFIG_ARCH_NOINTC
|
#ifndef CONFIG_ARCH_NOINTC
|
||||||
up_disable_irq(priv->irq);
|
up_disable_irq(priv->irq);
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
+1
-1
@@ -87,7 +87,7 @@
|
|||||||
* of the attached shared memory segment and return 0.
|
* of the attached shared memory segment and return 0.
|
||||||
*
|
*
|
||||||
* Otherwise, the shared memory segment will not be detached, shmdt()
|
* Otherwise, the shared memory segment will not be detached, shmdt()
|
||||||
& will return -1, and errno will be set to indicate the error.
|
* will return -1, and errno will be set to indicate the error.
|
||||||
*
|
*
|
||||||
* - EINVAL
|
* - EINVAL
|
||||||
* The value of shmaddr is not the data segment start address of a
|
* The value of shmaddr is not the data segment start address of a
|
||||||
|
|||||||
Reference in New Issue
Block a user