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:
Bart Van Assche
2014-03-27 08:27:45 +00:00
parent b25163e9c1
commit b1587fa6eb
2 changed files with 2 additions and 2 deletions

View File

@@ -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);

View File

@@ -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);