Merge "sched/tune: Remove redundant checks for NULL css"

This commit is contained in:
Linux Build Service Account 2016-10-13 12:29:02 -07:00 committed by Gerrit - the friendly Code Review server
commit 201e421789

View file

@ -29,7 +29,7 @@ struct schedtune {
static inline struct schedtune *css_st(struct cgroup_subsys_state *css)
{
return css ? container_of(css, struct schedtune, css) : NULL;
return container_of(css, struct schedtune, css);
}
static inline struct schedtune *task_schedtune(struct task_struct *tsk)