diff options
author | Tomas Winkler <tomas.winkler@intel.com> | 2013-09-15 17:11:06 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-09-26 17:39:27 +0200 |
commit | a9c8a17aea8ced19598b388db618e9094f3c1245 (patch) | |
tree | 18d34045e481538f316d08d4e84f1358b90e95e4 | |
parent | mei: revamp read and write length checks (diff) | |
download | linux-a9c8a17aea8ced19598b388db618e9094f3c1245.tar.xz linux-a9c8a17aea8ced19598b388db618e9094f3c1245.zip |
mei: mei_release: drop redundant check if cb is NULL
mei_io_cb_free follows kfree design and check for NULL internally
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/misc/mei/main.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/misc/mei/main.c b/drivers/misc/mei/main.c index 7404584e65e1..9aa3b78067d3 100644 --- a/drivers/misc/mei/main.c +++ b/drivers/misc/mei/main.c @@ -165,10 +165,7 @@ static int mei_release(struct inode *inode, struct file *file) file->private_data = NULL; - if (cb) { - mei_io_cb_free(cb); - cb = NULL; - } + mei_io_cb_free(cb); kfree(cl); out: |