diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-06-13 14:45:22 +0300 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2019-06-13 19:23:38 +0300 |
commit | eb7cf945a8dac8603e6d0759023e9b6cfed7a008 (patch) | |
tree | db353d98911bf9238dc1ffa568381638bd1f62cf /drivers/gpu/host1x | |
parent | f3b0d8793c1619074d0ece2e1a7f64ea37eaf394 (diff) | |
download | linux-eb7cf945a8dac8603e6d0759023e9b6cfed7a008.tar.xz |
host1x: debugfs_create_dir() can never return NULL
So there is no need to check for a value that can never happen. No need
to check the return value all anyway, as any debugfs call can take the
result of this function as an option just fine.
Cc: Thierry Reding <thierry.reding@gmail.com>
Cc: dri-devel@lists.freedesktop.org
Cc: linux-tegra@vger.kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/gpu/host1x')
-rw-r--r-- | drivers/gpu/host1x/debug.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/gpu/host1x/debug.c b/drivers/gpu/host1x/debug.c index 329e4a3d8ae7..6c5ee3e39dc6 100644 --- a/drivers/gpu/host1x/debug.c +++ b/drivers/gpu/host1x/debug.c @@ -171,9 +171,6 @@ static void host1x_debugfs_init(struct host1x *host1x) { struct dentry *de = debugfs_create_dir("tegra-host1x", NULL); - if (!de) - return; - /* Store the created entry */ host1x->debugfs = de; |