]> git.baikalelectronics.ru Git - kernel.git/commit
x86/resctrl: Remove redundant assignment to variable chunks
authorColin Ian King <colin.i.king@gmail.com>
Tue, 7 Dec 2021 22:37:35 +0000 (22:37 +0000)
committerDave Hansen <dave.hansen@linux.intel.com>
Thu, 9 Dec 2021 17:57:16 +0000 (09:57 -0800)
commit784082f60c0527e6ba351760aed73923375c4426
treef20551050b99d69633694efb94be40cb9aa8494f
parenta2200a1a728925ec7975c22ebe5470181f223449
x86/resctrl: Remove redundant assignment to variable chunks

The variable chunks is being shifted right and re-assinged the shifted
value which is then returned. Since chunks is not being read afterwards
the assignment is redundant and the >>= operator can be replaced with a
shift >> operator instead.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Dave Hansen <dave.hansen@linux.intel.com>
Reviewed-by: Fenghua Yu <fenghua.yu@intel.com>
Link: https://lkml.kernel.org/r/20211207223735.35173-1-colin.i.king@gmail.com
arch/x86/kernel/cpu/resctrl/monitor.c