Staging: bcm: Bcmchar.c: Renamed variable: "stTimeElapsedSinceNetEntry" -> "time_elapsed_since_net_entry"
Signed-off-by: Matthias Beyer <mail@beyermatthias.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
bafa367468
commit
ad4a9e6d99
@ -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,
|
static int bcm_char_ioctl_time_since_net_entry(void __user *argp,
|
||||||
struct bcm_mini_adapter *ad)
|
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;
|
struct bcm_ioctl_buffer io_buff;
|
||||||
|
|
||||||
BCM_DEBUG_PRINT(ad, DBG_TYPE_OTHERS, OSAL_DBG, DBG_LVL_ALL,
|
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))
|
if (io_buff.OutputLength < sizeof(struct bcm_time_elapsed))
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
stTimeElapsedSinceNetEntry.ul64TimeElapsedSinceNetEntry =
|
time_elapsed_since_net_entry.ul64TimeElapsedSinceNetEntry =
|
||||||
get_seconds() - ad->liTimeSinceLastNetEntry;
|
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)))
|
sizeof(struct bcm_time_elapsed)))
|
||||||
return -EFAULT;
|
return -EFAULT;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user