mirror of
https://github.com/apache/nuttx.git
synced 2026-06-05 15:58:59 +08:00
Eliminate a warning detected by nuttx/tools/testbuild.sh
This commit is contained in:
@@ -751,7 +751,6 @@ static inline void up_enablebreaks(struct up_dev_s *priv, bool enable)
|
|||||||
#ifdef CONFIG_A1X_UART0
|
#ifdef CONFIG_A1X_UART0
|
||||||
static inline void a1x_uart0config(void)
|
static inline void a1x_uart0config(void)
|
||||||
{
|
{
|
||||||
uint32_t regval;
|
|
||||||
irqstate_t flags;
|
irqstate_t flags;
|
||||||
|
|
||||||
/* Step 1: Enable power to UART0 */
|
/* Step 1: Enable power to UART0 */
|
||||||
@@ -773,7 +772,6 @@ static inline void a1x_uart0config(void)
|
|||||||
#ifdef CONFIG_A1X_UART1
|
#ifdef CONFIG_A1X_UART1
|
||||||
static inline void a1x_uart1config(void)
|
static inline void a1x_uart1config(void)
|
||||||
{
|
{
|
||||||
uint32_t regval;
|
|
||||||
irqstate_t flags;
|
irqstate_t flags;
|
||||||
|
|
||||||
/* Step 1: Enable power to UART1 */
|
/* Step 1: Enable power to UART1 */
|
||||||
@@ -795,7 +793,6 @@ static inline void a1x_uart1config(void)
|
|||||||
#ifdef CONFIG_A1X_UART2
|
#ifdef CONFIG_A1X_UART2
|
||||||
static inline void a1x_uart2config(void)
|
static inline void a1x_uart2config(void)
|
||||||
{
|
{
|
||||||
uint32_t regval;
|
|
||||||
irqstate_t flags;
|
irqstate_t flags;
|
||||||
|
|
||||||
/* Step 1: Enable power to UART2 */
|
/* Step 1: Enable power to UART2 */
|
||||||
@@ -817,7 +814,6 @@ static inline void a1x_uart2config(void)
|
|||||||
#ifdef CONFIG_A1X_UART3
|
#ifdef CONFIG_A1X_UART3
|
||||||
static inline void a1x_uart3config(void)
|
static inline void a1x_uart3config(void)
|
||||||
{
|
{
|
||||||
uint32_t regval;
|
|
||||||
irqstate_t flags;
|
irqstate_t flags;
|
||||||
|
|
||||||
/* Step 1: Enable power to UART3 */
|
/* Step 1: Enable power to UART3 */
|
||||||
@@ -839,7 +835,6 @@ static inline void a1x_uart3config(void)
|
|||||||
#ifdef CONFIG_A1X_UART4
|
#ifdef CONFIG_A1X_UART4
|
||||||
static inline void a1x_uart4config(void)
|
static inline void a1x_uart4config(void)
|
||||||
{
|
{
|
||||||
uint32_t regval;
|
|
||||||
irqstate_t flags;
|
irqstate_t flags;
|
||||||
|
|
||||||
/* Step 1: Enable power to UART4 */
|
/* Step 1: Enable power to UART4 */
|
||||||
@@ -861,7 +856,6 @@ static inline void a1x_uart4config(void)
|
|||||||
#ifdef CONFIG_A1X_UART5
|
#ifdef CONFIG_A1X_UART5
|
||||||
static inline void a1x_uart5config(void)
|
static inline void a1x_uart5config(void)
|
||||||
{
|
{
|
||||||
uint32_t regval;
|
|
||||||
irqstate_t flags;
|
irqstate_t flags;
|
||||||
|
|
||||||
/* Step 1: Enable power to UART5 */
|
/* Step 1: Enable power to UART5 */
|
||||||
@@ -883,7 +877,6 @@ static inline void a1x_uart5config(void)
|
|||||||
#ifdef CONFIG_A1X_UART6
|
#ifdef CONFIG_A1X_UART6
|
||||||
static inline void a1x_uart6config(void)
|
static inline void a1x_uart6config(void)
|
||||||
{
|
{
|
||||||
uint32_t regval;
|
|
||||||
irqstate_t flags;
|
irqstate_t flags;
|
||||||
|
|
||||||
/* Step 1: Enable power to UART6 */
|
/* Step 1: Enable power to UART6 */
|
||||||
@@ -905,7 +898,6 @@ static inline void a1x_uart6config(void)
|
|||||||
#ifdef CONFIG_A1X_UART7
|
#ifdef CONFIG_A1X_UART7
|
||||||
static inline void a1x_uart7config(void)
|
static inline void a1x_uart7config(void)
|
||||||
{
|
{
|
||||||
uint32_t regval;
|
|
||||||
irqstate_t flags;
|
irqstate_t flags;
|
||||||
|
|
||||||
/* Step 1: Enable power to UART7 */
|
/* Step 1: Enable power to UART7 */
|
||||||
|
|||||||
@@ -763,7 +763,6 @@ void fb_uninitialize(void)
|
|||||||
/* Turn off clocking to the LCD. modifyreg32() can do this atomically. */
|
/* Turn off clocking to the LCD. modifyreg32() can do this atomically. */
|
||||||
|
|
||||||
modifyreg32(LPC17_SYSCON_PCONP, SYSCON_PCONP_PCLCD, 0);
|
modifyreg32(LPC17_SYSCON_PCONP, SYSCON_PCONP_PCLCD, 0);
|
||||||
return OK;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/************************************************************************************
|
/************************************************************************************
|
||||||
|
|||||||
@@ -364,7 +364,7 @@ static void __ramfunc__ sam_mckdivider(void)
|
|||||||
*
|
*
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
#ifdef PMC_MCKR_H32MXDIV
|
#if defined(PMC_MCKR_H32MXDIV) && defined(NEED_PLLSETUP)
|
||||||
static void __ramfunc__ sam_h32mxdivider(void)
|
static void __ramfunc__ sam_h32mxdivider(void)
|
||||||
{
|
{
|
||||||
uint32_t regval;
|
uint32_t regval;
|
||||||
|
|||||||
Reference in New Issue
Block a user