diff options
author | Ashutosh Dixit | 2015-09-30 03:14:30 +0200 |
---|---|---|
committer | Greg Kroah-Hartman | 2015-10-04 13:54:54 +0200 |
commit | f4a66c20448257fbb8932827e5f766b74d1acbf0 (patch) | |
tree | 71f995817bb204f780c5eba69b893460034ec08b /Documentation/mic/mpssd/mpss | |
parent | misc: mic: Remove COSM functionality from the MIC card driver (diff) | |
download | kernel-qcow2-linux-f4a66c20448257fbb8932827e5f766b74d1acbf0.tar.gz kernel-qcow2-linux-f4a66c20448257fbb8932827e5f766b74d1acbf0.tar.xz kernel-qcow2-linux-f4a66c20448257fbb8932827e5f766b74d1acbf0.zip |
misc: mic: Update MIC host daemon with COSM changes
This patch updates the MIC host daemon to work with corresponding
changes in COSM. Other MIC daemon fixes, cleanups and enhancements as
are also rolled into this patch. Changes to MIC sysfs ABI which go
into effect with this patch are also documented.
Reviewed-by: Sudeep Dutt <sudeep.dutt@intel.com>
Signed-off-by: Dasaratharaman Chandramouli <dasaratharaman.chandramouli@intel.com>
Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'Documentation/mic/mpssd/mpss')
-rwxr-xr-x | Documentation/mic/mpssd/mpss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/mic/mpssd/mpss b/Documentation/mic/mpssd/mpss index 582aad4811ae..09ea90931649 100755 --- a/Documentation/mic/mpssd/mpss +++ b/Documentation/mic/mpssd/mpss @@ -119,10 +119,10 @@ stop() # Wait for the cards to go offline for f in $sysfs/* do - while [ "`cat $f/state`" != "offline" ] + while [ "`cat $f/state`" != "ready" ] do sleep 1 - echo -e "Waiting for "`basename $f`" to go offline" + echo -e "Waiting for "`basename $f`" to become ready" done done |