mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-10 16:21:45 -04:00
staging: gdm72xx: Add space around '-'
Add space around operator '-'. Problem found using checkpatch.pl CHECK: spaces preferred around that '-' (ctx:VxV) Signed-off-by: Burcin Akalin <brcnakalin@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
24f49745df
commit
053124a34d
@@ -101,7 +101,7 @@ void gdm_qos_init(void *nic_ptr)
|
||||
}
|
||||
|
||||
qcb->qos_list_cnt = 0;
|
||||
qcb->qos_null_idx = QOS_MAX-1;
|
||||
qcb->qos_null_idx = QOS_MAX - 1;
|
||||
qcb->qos_limit_size = 255;
|
||||
|
||||
spin_lock_init(&qcb->qos_lock);
|
||||
@@ -128,7 +128,7 @@ void gdm_qos_release_list(void *nic_ptr)
|
||||
}
|
||||
|
||||
qcb->qos_list_cnt = 0;
|
||||
qcb->qos_null_idx = QOS_MAX-1;
|
||||
qcb->qos_null_idx = QOS_MAX - 1;
|
||||
|
||||
for (i = 0; i < QOS_MAX; i++) {
|
||||
list_for_each_entry_safe(entry, n, &qcb->qos_list[i], list) {
|
||||
|
||||
Reference in New Issue
Block a user