Style fix
authorAlexander Popov <alex.popov@linux.com>
Wed, 18 Mar 2020 11:27:45 +0000 (14:27 +0300)
committerAlexander Popov <alex.popov@linux.com>
Wed, 18 Mar 2020 11:27:45 +0000 (14:27 +0300)
kconfig-hardened-check.py

index 3b9a254941ad35f0c51b308840e11d2d9e38cf35..c5a5491d43b07f8ecb8966f045424a3c6a5ede85 100755 (executable)
@@ -236,7 +236,7 @@ def construct_checklist(checklist, arch):
                         OptCheck('DEBUG_SET_MODULE_RONX',    'y', 'defconfig', 'self_protection'), \
                         modules_not_set)) # DEBUG_SET_MODULE_RONX was before v4.11
     checklist.append(OptCheck('GCC_PLUGINS',                 'y', 'defconfig', 'self_protection'))
-    checklist.append(OR(OptCheck('REFCOUNT_FULL',               'y', 'defconfig', 'self_protection'), \
+    checklist.append(OR(OptCheck('REFCOUNT_FULL',            'y', 'defconfig', 'self_protection'), \
                         VerCheck((5, 5)))) # REFCOUNT_FULL is enabled by default since v5.5
     iommu_support_is_set = OptCheck('IOMMU_SUPPORT',         'y', 'defconfig', 'self_protection') # is needed for mitigating DMA attacks
     checklist.append(iommu_support_is_set)