blob: 766476e0f711321a57427234f47808519b78f191 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
Index: uts/usr/src/uts/intel/io/heci/heci_init.c
===================================================================
--- uts.orig/usr/src/uts/intel/io/heci/heci_init.c
+++ uts/usr/src/uts/intel/io/heci/heci_init.c
@@ -320,10 +320,10 @@ heci_hw_init(struct iamt_heci_device *de
dev->host_hw_state,
dev->me_hw_state);
- if (!(dev->host_hw_state & H_RDY) != H_RDY)
+ if (!(dev->host_hw_state & H_RDY))
DBG("host turn off H_RDY.\n");
- if (!(dev->me_hw_state & ME_RDY_HRA) != ME_RDY_HRA)
+ if (!(dev->me_hw_state & ME_RDY_HRA))
DBG("ME turn off ME_RDY.\n");
cmn_err(CE_WARN,
|