oom: remove spaces after '*'

Message ID 944703e88ae911d7008f2b5f1ca52d2f@208suo.com (mailing list archive)
State Not Applicable
Headers
Series oom: remove spaces after '*' |

Commit Message

sunran001@208suo.com July 20, 2023, 3:24 a.m. UTC
  remove redundant spaces to clear checkpatch errors.

ERROR: "foo * bar" should be "foo *bar"

Signed-off-by: Ran Sun <sunran001@208suo.com>
---
  include/linux/oom.h | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

  }
  

Patch

diff --git a/include/linux/oom.h b/include/linux/oom.h
index 7d0c9c48a0c5..7964f1fd9984 100644
--- a/include/linux/oom.h
+++ b/include/linux/oom.h
@@ -72,7 +72,7 @@  static inline bool oom_task_origin(const struct 
task_struct *p)
  	return p->signal->oom_flag_origin;
  }

-static inline bool tsk_is_oom_victim(struct task_struct * tsk)
+static inline bool tsk_is_oom_victim(struct task_struct *tsk)
  {
  	return tsk->signal->oom_mm;