staging: iio: remove duplicate case labels
authorDaniel Baluta <daniel.baluta@intel.com>
Mon, 7 Jul 2014 14:12:00 +0000 (15:12 +0100)
committerJonathan Cameron <jic23@kernel.org>
Mon, 7 Jul 2014 16:15:13 +0000 (17:15 +0100)
Otherwise, compiling iio_event_monitor program fails:

io_event_monitor.c: In function ‘event_is_known’:
iio_event_monitor.c:125:2: error: duplicate case value
  case IIO_MOD_LIGHT_BOTH:
  ^
iio_event_monitor.c:121:2: error: previously used here
  case IIO_MOD_LIGHT_BOTH:

Fixes: da4db94 (iio staging: add recently added modifiers to iio_event_monitor)
Signed-off-by: Daniel Baluta <daniel.baluta@intel.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/staging/iio/Documentation/iio_event_monitor.c

index cb35a97f00c3a0399c3b4fe79adebda5f2b3d537..569d6f8face5d3040880b8424378c0bdefbcbd2b 100644 (file)
@@ -122,8 +122,6 @@ static bool event_is_known(struct iio_event_data *event)
        case IIO_MOD_LIGHT_IR:
        case IIO_MOD_ROOT_SUM_SQUARED_X_Y:
        case IIO_MOD_SUM_SQUARED_X_Y_Z:
-       case IIO_MOD_LIGHT_BOTH:
-       case IIO_MOD_LIGHT_IR:
        case IIO_MOD_LIGHT_CLEAR:
        case IIO_MOD_LIGHT_RED:
        case IIO_MOD_LIGHT_GREEN:
This page took 0.02587 seconds and 5 git commands to generate.