mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-27 22:24:11 +08:00
staging: ks7010: fix line ending with '('
Splitting function header to multiple lines because of 80 characters per line limit, results in ending the function call line with '('. This leads to CHECK reported by checkpatch.pl Move the first parameter right after the '(' in the function call line. Align the rest of the parameters to the opening parenthesis. Signed-off-by: Khadija Kamran <kamrankhadijadj@gmail.com> Link: https://lore.kernel.org/r/ZBsEQzL3Oidsmg/L@khadija-virtual-machine Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
bb75546bb6
commit
d24927f43b
@ -75,9 +75,8 @@ static void ks_wlan_hw_wakeup_task(struct work_struct *work)
|
||||
|
||||
if (ps_status == PS_SNOOZE) {
|
||||
ks_wlan_hw_wakeup_request(priv);
|
||||
time_left = wait_for_completion_interruptible_timeout(
|
||||
&priv->psstatus.wakeup_wait,
|
||||
msecs_to_jiffies(20));
|
||||
time_left = wait_for_completion_interruptible_timeout(&priv->psstatus.wakeup_wait,
|
||||
msecs_to_jiffies(20));
|
||||
if (time_left <= 0) {
|
||||
netdev_dbg(priv->net_dev, "wake up timeout or interrupted !!!\n");
|
||||
schedule_work(&priv->wakeup_work);
|
||||
|
Loading…
Reference in New Issue
Block a user