diff options
author | Tomas Winkler <tomas.winkler@intel.com> | 2013-09-15 11:11:06 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-09-26 11:39:27 -0400 |
commit | a9c8a17aea8ced19598b388db618e9094f3c1245 (patch) | |
tree | 18d34045e481538f316d08d4e84f1358b90e95e4 /drivers/misc | |
parent | dd5de1f165ade430357960459491a067c7e3d21c (diff) |
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>
Diffstat (limited to 'drivers/misc')
-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) | |||
165 | 165 | ||
166 | file->private_data = NULL; | 166 | file->private_data = NULL; |
167 | 167 | ||
168 | if (cb) { | 168 | mei_io_cb_free(cb); |
169 | mei_io_cb_free(cb); | ||
170 | cb = NULL; | ||
171 | } | ||
172 | 169 | ||
173 | kfree(cl); | 170 | kfree(cl); |
174 | out: | 171 | out: |