aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/misc/mei/interrupt.c
diff options
context:
space:
mode:
authorTomas Winkler <tomas.winkler@intel.com>2014-02-12 14:41:51 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-02-14 14:12:46 -0500
commit02a7eecc6ee565f5f3af836d56fe25bafcc49c98 (patch)
treea85f9ac8dc72f2ff1ac10945922c4b4cc91ccf53 /drivers/misc/mei/interrupt.c
parent208008c322fd1ffdd07e7fc95910154174ce0ff3 (diff)
mei: rename MEI_FOP_IOCTL to MEI_FOP_CONNECT
This operation actually only support connection and not a generic ioctl Signed-off-by: Tomas Winkler <tomas.winkler@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/misc/mei/interrupt.c')
-rw-r--r--drivers/misc/mei/interrupt.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/misc/mei/interrupt.c b/drivers/misc/mei/interrupt.c
index f0fbb5179f80..3f0b0b9ce951 100644
--- a/drivers/misc/mei/interrupt.c
+++ b/drivers/misc/mei/interrupt.c
@@ -244,8 +244,7 @@ static int mei_cl_irq_read(struct mei_cl *cl, struct mei_cl_cb *cb,
244 244
245 245
246/** 246/**
247 * mei_cl_irq_ioctl - processes client ioctl related operation from the 247 * mei_cl_irq_connect - send connect request in irq_thread context
248 * interrupt thread context - send connection request
249 * 248 *
250 * @cl: client 249 * @cl: client
251 * @cb: callback block. 250 * @cb: callback block.
@@ -254,7 +253,7 @@ static int mei_cl_irq_read(struct mei_cl *cl, struct mei_cl_cb *cb,
254 * 253 *
255 * returns 0, OK; otherwise, error. 254 * returns 0, OK; otherwise, error.
256 */ 255 */
257static int mei_cl_irq_ioctl(struct mei_cl *cl, struct mei_cl_cb *cb, 256static int mei_cl_irq_connect(struct mei_cl *cl, struct mei_cl_cb *cb,
258 s32 *slots, struct mei_cl_cb *cmpl_list) 257 s32 *slots, struct mei_cl_cb *cmpl_list)
259{ 258{
260 struct mei_device *dev = cl->dev; 259 struct mei_device *dev = cl->dev;
@@ -263,6 +262,9 @@ static int mei_cl_irq_ioctl(struct mei_cl *cl, struct mei_cl_cb *cb,
263 u32 msg_slots = 262 u32 msg_slots =
264 mei_data2slots(sizeof(struct hbm_client_connect_request)); 263 mei_data2slots(sizeof(struct hbm_client_connect_request));
265 264
265 if (mei_cl_is_other_connecting(cl))
266 return 0;
267
266 if (*slots < msg_slots) { 268 if (*slots < msg_slots) {
267 /* return the cancel routine */ 269 /* return the cancel routine */
268 list_del(&cb->list); 270 list_del(&cb->list);
@@ -496,11 +498,9 @@ int mei_irq_write_handler(struct mei_device *dev, struct mei_cl_cb *cmpl_list)
496 return ret; 498 return ret;
497 499
498 break; 500 break;
499 case MEI_FOP_IOCTL: 501 case MEI_FOP_CONNECT:
500 /* connect message */ 502 /* connect message */
501 if (mei_cl_is_other_connecting(cl)) 503 ret = mei_cl_irq_connect(cl, cb, &slots, cmpl_list);
502 continue;
503 ret = mei_cl_irq_ioctl(cl, cb, &slots, cmpl_list);
504 if (ret) 504 if (ret)
505 return ret; 505 return ret;
506 506