This fixes the following checkpatch.pl warning:
WARNING: Missing a blank line after declarations.
Signed-off-by: Catalina Mocanu <catalina.mocanu@gmail.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
 static __init int iio_dummy_evgen_init(void)
 {
        int ret = iio_dummy_evgen_create();
+
        if (ret < 0)
                return ret;
        device_initialize(&iio_evgen_dev);
 
                 * in the constant table fakedata.
                 */
                int i, j;
+
                for (i = 0, j = 0;
                     i < bitmap_weight(indio_dev->active_scan_mask,
                                       indio_dev->masklength);
 
 static irqreturn_t iio_simple_dummy_event_handler(int irq, void *private)
 {
        struct iio_dev *indio_dev = private;
+
        iio_push_event(indio_dev,
                       IIO_EVENT_CODE(IIO_VOLTAGE, 0, 0,
                                      IIO_EV_DIR_RISING,