summaryrefslogtreecommitdiffstats
path: root/drivers/misc/mei/hbm.c
diff options
context:
space:
mode:
authorTomas Winkler <tomas.winkler@intel.com>2015-07-26 09:54:18 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-08-03 17:30:00 -0700
commit51678ccb7b12dd428a84d466ff379a5e2d717f1f (patch)
treea0c122b9751655eaaa28d97a40cad163b8779547 /drivers/misc/mei/hbm.c
parent4d99877d871da0bbb924b2d7aa4ccb27e1ffa93a (diff)
downloadlinux-51678ccb7b12dd428a84d466ff379a5e2d717f1f.tar.bz2
mei: add mei_cl_notify_request command
Add per client notification request infrastructure that allows client to enable or disable async event notification. Signed-off-by: Tomas Winkler <tomas.winkler@intel.com> Signed-off-by: Alexander Usyskin <alexander.usyskin@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/misc/mei/hbm.c')
-rw-r--r--drivers/misc/mei/hbm.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/misc/mei/hbm.c b/drivers/misc/mei/hbm.c
index 95e918c84a6c..12229ff4bc7e 100644
--- a/drivers/misc/mei/hbm.c
+++ b/drivers/misc/mei/hbm.c
@@ -446,10 +446,7 @@ static inline enum mei_cb_file_ops notify_res_to_fop(struct mei_hbm_cl_cmd *cmd)
struct hbm_notification_response *rs =
(struct hbm_notification_response *)cmd;
- if (rs->start == MEI_HBM_NOTIFICATION_START)
- return MEI_FOP_NOTIFY_START;
- else
- return MEI_FOP_NOTIFY_STOP;
+ return mei_cl_notify_req2fop(rs->start);
}
/**