gpiolib: Rename 'event' to 'ge' to be consistent with other use
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Thu, 13 Feb 2020 17:09:04 +0000 (19:09 +0200)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Mon, 2 Mar 2020 07:52:55 +0000 (08:52 +0100)
Rename 'event' to 'ge' to be consistent with other use.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
drivers/gpio/gpiolib.c

index 2253ab49534914cbe39b210b1ea00198f8c393f0..2982d983c4fdb9598aa74d1ade82497b33e7ebfd 100644 (file)
@@ -830,11 +830,11 @@ static ssize_t lineevent_read(struct file *filep,
                              loff_t *f_ps)
 {
        struct lineevent_state *le = filep->private_data;
-       struct gpioevent_data event;
+       struct gpioevent_data ge;
        ssize_t bytes_read = 0;
        int ret;
 
-       if (count < sizeof(event))
+       if (count < sizeof(ge))
                return -EINVAL;
 
        do {
@@ -858,7 +858,7 @@ static ssize_t lineevent_read(struct file *filep,
                        }
                }
 
-               ret = kfifo_out(&le->events, &event, 1);
+               ret = kfifo_out(&le->events, &ge, 1);
                spin_unlock(&le->wait.lock);
                if (ret != 1) {
                        /*
@@ -870,10 +870,10 @@ static ssize_t lineevent_read(struct file *filep,
                        break;
                }
 
-               if (copy_to_user(buf + bytes_read, &event, sizeof(event)))
+               if (copy_to_user(buf + bytes_read, &ge, sizeof(ge)))
                        return -EFAULT;
-               bytes_read += sizeof(event);
-       } while (count >= bytes_read + sizeof(event));
+               bytes_read += sizeof(ge);
+       } while (count >= bytes_read + sizeof(ge));
 
        return bytes_read;
 }