mirror of
https://github.com/SCST-project/scst.git
synced 2026-05-17 10:41:26 +00:00
Fix two checkpatch complaints about whitespace
Avoid that checkpatch reports the following error message: ERROR: "(foo*)" should be "(foo *)" git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@5397 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
@@ -3873,7 +3873,7 @@ found:
|
||||
t->acg_dev->acg->acg_io_grouping_type);
|
||||
} else {
|
||||
res = t;
|
||||
if (!*(volatile bool*)&res->active_cmd_threads->io_context_ready) {
|
||||
if (!*(volatile bool *)&res->active_cmd_threads->io_context_ready) {
|
||||
TRACE_DBG("IO context for t %p not yet "
|
||||
"initialized, waiting...", t);
|
||||
msleep(100);
|
||||
|
||||
@@ -1925,7 +1925,7 @@ out_wait:
|
||||
* Wait for io_context gets initialized to avoid possible races
|
||||
* for it from the sharing it tgt_devs.
|
||||
*/
|
||||
while (!*(volatile bool*)&cmd_threads->io_context_ready) {
|
||||
while (!*(volatile bool *)&cmd_threads->io_context_ready) {
|
||||
TRACE_DBG("Waiting for io_context for cmd_threads %p "
|
||||
"initialized", cmd_threads);
|
||||
msleep(50);
|
||||
|
||||
Reference in New Issue
Block a user