Browse Source

Platform/96Boards/96BoardsI2cDxe: rewrite DEPEX expression for legibility

Operator precedence is funny in DEPEX expressions, so let's add some
parentheses to make it self explanatory. The resulting truth value
is the same.

Signed-off-by: Ard Biesheuvel <ard.biesheuvel@arm.com>
Reviewed-by: Leif Lindholm <leif@nuviainc.com>
Ard Biesheuvel 4 years ago
parent
commit
e744a0ef68
1 changed files with 3 additions and 1 deletions
  1. 3 1
      Platform/96Boards/96BoardsI2cDxe/96BoardsI2cDxe.inf

+ 3 - 1
Platform/96Boards/96BoardsI2cDxe/96BoardsI2cDxe.inf

@@ -43,4 +43,6 @@
   g96BoardsTokenSpaceGuid.PcdI2c1BusFrequencyHz
 
 [Depex]
-  g96BoardsMezzanineProtocolGuid AND g96BoardsI2c0MasterGuid OR g96BoardsI2c1MasterGuid
+  g96BoardsMezzanineProtocolGuid AND (
+    g96BoardsI2c0MasterGuid OR g96BoardsI2c1MasterGuid
+  )