Eliminate some warnings

This commit is contained in:
Gregory Nutt 2016-10-07 13:47:02 -06:00
parent 18791db758
commit 741e100dcf

View File

@ -44,6 +44,7 @@
#include <debug.h> #include <debug.h>
#include <nuttx/i2c/i2c_master.h> #include <nuttx/i2c/i2c_master.h>
#include <nuttx/sensors/qencoder.h>
#include <arch/board/board.h> #include <arch/board/board.h>
#include <nuttx/drivers/pwm.h> #include <nuttx/drivers/pwm.h>
@ -65,7 +66,7 @@
# define HAVE_PWM # define HAVE_PWM
#endif #endif
#ifdef CONFIG_TM4C1294_LAUNCHPAD_QEI #if defined(CONFIG_TIVA_QEI0) || defined(CONFIG_TIVA_QEI1)
# define HAVE_QEI # define HAVE_QEI
#endif #endif
@ -247,6 +248,7 @@ static void tm4c_pwm(void)
* *
****************************************************************************/ ****************************************************************************/
#ifdef HAVE_QEI
static void tm4c_qei_register(int id) static void tm4c_qei_register(int id)
{ {
FAR struct qe_lowerhalf_s *dev; FAR struct qe_lowerhalf_s *dev;
@ -268,6 +270,7 @@ static void tm4c_qei_register(int id)
} }
} }
} }
#endif
/**************************************************************************** /****************************************************************************
* Name: tm4c_qei * Name: tm4c_qei