diff options
author | 2014-02-12 21:41:51 +0200 | |
---|---|---|
committer | 2014-02-14 11:12:46 -0800 | |
commit | 02a7eecc6ee565f5f3af836d56fe25bafcc49c98 (patch) | |
tree | a85f9ac8dc72f2ff1ac10945922c4b4cc91ccf53 /drivers/misc/mei/client.c | |
parent | mei: fix compilation error with missing WATCHDOG_CORE (diff) | |
download | linux-dev-02a7eecc6ee565f5f3af836d56fe25bafcc49c98.tar.xz linux-dev-02a7eecc6ee565f5f3af836d56fe25bafcc49c98.zip |
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/client.c')
-rw-r--r-- | drivers/misc/mei/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/mei/client.c b/drivers/misc/mei/client.c index 1ee2b9492a82..1d3720697618 100644 --- a/drivers/misc/mei/client.c +++ b/drivers/misc/mei/client.c @@ -505,7 +505,7 @@ int mei_cl_connect(struct mei_cl *cl, struct file *file) goto out; } - cb->fop_type = MEI_FOP_IOCTL; + cb->fop_type = MEI_FOP_CONNECT; if (dev->hbuf_is_ready && !mei_cl_is_other_connecting(cl)) { dev->hbuf_is_ready = false; |