diff options
author | Kaixu Xia <kaixuxia@tencent.com> | 2020-11-07 15:53:41 +0300 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2020-11-09 17:02:40 +0300 |
commit | 3be3955315bdf7e4511514a520a76675a23e86e6 (patch) | |
tree | 4c1019daafdf1c2f0e0fd3772a698a41884d345f | |
parent | 156ec4731cb22b06c08e27debc1ef9f16f4bbb5e (diff) | |
download | linux-3be3955315bdf7e4511514a520a76675a23e86e6.tar.xz |
platform/x86: intel_pmc_core: Assign boolean values to a bool variable
Fix the following coccinelle warnings:
./drivers/platform/x86/intel_pmc_core.c:932:1-16: WARNING: Assignment of 0/1 to bool variable
Signed-off-by: Kaixu Xia <kaixuxia@tencent.com>
Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
Link: https://lore.kernel.org/r/1604753621-7387-1-git-send-email-kaixuxia@tencent.com
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
-rw-r--r-- | drivers/platform/x86/intel_pmc_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/intel_pmc_core.c b/drivers/platform/x86/intel_pmc_core.c index 3e5fe66333f1..ee2f757515b0 100644 --- a/drivers/platform/x86/intel_pmc_core.c +++ b/drivers/platform/x86/intel_pmc_core.c @@ -929,7 +929,7 @@ static void pmc_core_slps0_dbg_latch(struct pmc_dev *pmcdev, bool reset) fd |= CNP_PMC_LATCH_SLPS0_EVENTS; pmc_core_reg_write(pmcdev, map->slps0_dbg_offset, fd); - slps0_dbg_latch = 0; + slps0_dbg_latch = false; out_unlock: mutex_unlock(&pmcdev->lock); |