summaryrefslogtreecommitdiff
path: root/drivers/input/touchscreen
diff options
context:
space:
mode:
authorFabian Frederick <fabf@skynet.be>2014-07-09 16:45:57 (GMT)
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2014-07-18 17:53:28 (GMT)
commitf69c6ec2837cf73bb8068b74edd17bfcfd7640b1 (patch)
tree99ebf75d7e92eef949d8be4ba7353ed84a0c66e5 /drivers/input/touchscreen
parentf915f2c66e8bccf9f4f886f4a49888acd6b0b6b2 (diff)
downloadlinux-f69c6ec2837cf73bb8068b74edd17bfcfd7640b1.tar.xz
Input: edt-ft5x06 - remove unnecessary null test
Fix checkpatch warning: "WARNING: debugfs_remove_recursive(NULL) is safe this check is probably not required" Signed-off-by: Fabian Frederick <fabf@skynet.be> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input/touchscreen')
-rw-r--r--drivers/input/touchscreen/edt-ft5x06.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/input/touchscreen/edt-ft5x06.c b/drivers/input/touchscreen/edt-ft5x06.c
index d4f3399..5a6d50c 100644
--- a/drivers/input/touchscreen/edt-ft5x06.c
+++ b/drivers/input/touchscreen/edt-ft5x06.c
@@ -733,8 +733,7 @@ edt_ft5x06_ts_prepare_debugfs(struct edt_ft5x06_ts_data *tsdata,
static void
edt_ft5x06_ts_teardown_debugfs(struct edt_ft5x06_ts_data *tsdata)
{
- if (tsdata->debug_dir)
- debugfs_remove_recursive(tsdata->debug_dir);
+ debugfs_remove_recursive(tsdata->debug_dir);
kfree(tsdata->raw_buffer);
}