mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-24 09:13:20 -05:00
media: rockchip: rkisp1: remove useless debugfs checks
The debugfs_create_dir() function never returns NULLs so this code will never be executed. It's not intended that callers will check for debugfs errors in the normal case and it's not necessary in this driver, so we can just delete this code. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Acked-by: Helen Koike <helen.koike@collabora.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
parent
0b6a3bf8f5
commit
42ad70c469
1 changed files with 0 additions and 4 deletions
|
@ -430,10 +430,6 @@ static void rkisp1_debug_init(struct rkisp1_device *rkisp1)
|
|||
struct rkisp1_debug *debug = &rkisp1->debug;
|
||||
|
||||
debug->debugfs_dir = debugfs_create_dir(RKISP1_DRIVER_NAME, NULL);
|
||||
if (!debug->debugfs_dir) {
|
||||
dev_dbg(rkisp1->dev, "failed to create debugfs directory\n");
|
||||
return;
|
||||
}
|
||||
debugfs_create_ulong("data_loss", 0444, debug->debugfs_dir,
|
||||
&debug->data_loss);
|
||||
debugfs_create_ulong("outform_size_err", 0444, debug->debugfs_dir,
|
||||
|
|
Loading…
Add table
Reference in a new issue