Staging: bcm: Bcmchar.c: Renamed variable: "stTimeElapsedSinceNetEntry" -> "time_elap...
authorMatthias Beyer <mail@beyermatthias.de>
Wed, 27 Aug 2014 10:58:13 +0000 (12:58 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 30 Aug 2014 20:01:39 +0000 (13:01 -0700)
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/bcm/Bcmchar.c

index bffbfd5..4d2556c 100644 (file)
@@ -2324,7 +2324,7 @@ static int bcm_char_ioctl_get_device_driver_info(void __user *argp,
 static int bcm_char_ioctl_time_since_net_entry(void __user *argp,
        struct bcm_mini_adapter *ad)
 {
-       struct bcm_time_elapsed stTimeElapsedSinceNetEntry = {0};
+       struct bcm_time_elapsed time_elapsed_since_net_entry = {0};
        struct bcm_ioctl_buffer io_buff;
 
        BCM_DEBUG_PRINT(ad, DBG_TYPE_OTHERS, OSAL_DBG, DBG_LVL_ALL,
@@ -2336,10 +2336,10 @@ static int bcm_char_ioctl_time_since_net_entry(void __user *argp,
        if (io_buff.OutputLength < sizeof(struct bcm_time_elapsed))
                return -EINVAL;
 
-       stTimeElapsedSinceNetEntry.ul64TimeElapsedSinceNetEntry =
+       time_elapsed_since_net_entry.ul64TimeElapsedSinceNetEntry =
                get_seconds() - ad->liTimeSinceLastNetEntry;
 
-       if (copy_to_user(io_buff.OutputBuffer, &stTimeElapsedSinceNetEntry,
+       if (copy_to_user(io_buff.OutputBuffer, &time_elapsed_since_net_entry,
                         sizeof(struct bcm_time_elapsed)))
                return -EFAULT;