zephyr/arch/x86
Leandro Pereira 0be498db5c quark_se: Correctly wait for ARC_READY flag while initializing ARC
The bitwise AND operator was being applied to the boolean expression
"!shared_data->flags" instead of the whole expression because a
parenthesis was lacking.

This bug has been found using Coccinelle using the following spatch,
after finding a similar bug somewhere else in the code base:

      @@
      expression E1;
      expression E2;
      @@

      - !E1 & E2
      + !(E1 & E2)

No other instance of this defect has been found with this spatch.

Change-Id: I6b9ca092f4015c80ddc83c31ce540a92e67cdb11
Signed-off-by: Leandro Pereira <leandro.pereira@intel.com>
2016-11-07 22:22:00 +00:00
..
core kernel: Rename USE_FP and USE_SSE symbols 2016-11-07 18:52:31 +00:00
debug x86: improve exception APIs 2016-07-28 18:13:24 +00:00
include kernel: Rename USE_FP and USE_SSE symbols 2016-11-07 18:52:31 +00:00
soc quark_se: Correctly wait for ARC_READY flag while initializing ARC 2016-11-07 22:22:00 +00:00
defconfig
Kbuild x86: improve exception APIs 2016-07-28 18:13:24 +00:00
Kconfig x86: declare internal API for interrupt controllers 2016-09-06 18:35:47 +00:00
Makefile