mei: mei_cl_link remove duplicated check for open_handle_count
authorTomas Winkler <tomas.winkler@intel.com>
Mon, 21 Oct 2013 19:05:41 +0000 (22:05 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 29 Oct 2013 23:20:43 +0000 (16:20 -0700)
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/misc/mei/client.c

index 0ccc22c..87c96e4 100644 (file)
@@ -299,12 +299,6 @@ int mei_cl_link(struct mei_cl *cl, int id)
                return -EMFILE;
        }
 
-       if (dev->open_handle_count >= MEI_MAX_OPEN_HANDLE_COUNT) {
-               dev_err(&dev->pdev->dev, "open_handle_count exceded %d",
-                       MEI_MAX_OPEN_HANDLE_COUNT);
-               return -ENOENT;
-       }
-
        dev->open_handle_count++;
 
        cl->host_client_id = id;