mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-07 17:27:11 -04:00
Staging: rtl8192e: Rename variable Time
Rename variable Time to time to fix checkpatch warning Avoid CamelCase. Signed-off-by: Tree Davies <tdavies@darkphysics.net> Tested-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> Link: https://lore.kernel.org/r/20230921032515.96152-2-tdavies@darkphysics.net Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
e2572686a5
commit
7458fdf8a7
@@ -10,11 +10,11 @@
|
||||
#include "rtllib.h"
|
||||
#include "rtl819x_BA.h"
|
||||
|
||||
static void activate_ba_entry(struct ba_record *pBA, u16 Time)
|
||||
static void activate_ba_entry(struct ba_record *pBA, u16 time)
|
||||
{
|
||||
pBA->b_valid = true;
|
||||
if (Time != 0)
|
||||
mod_timer(&pBA->timer, jiffies + msecs_to_jiffies(Time));
|
||||
if (time != 0)
|
||||
mod_timer(&pBA->timer, jiffies + msecs_to_jiffies(time));
|
||||
}
|
||||
|
||||
static void deactivate_ba_entry(struct rtllib_device *ieee, struct ba_record *pBA)
|
||||
|
||||
Reference in New Issue
Block a user