]> www.infradead.org Git - users/jedix/linux-maple.git/commit
crypto: qat - remove check after debugfs_create_dir()
authorCabiddu, Giovanni <giovanni.cabiddu@intel.com>
Mon, 16 Sep 2024 09:42:51 +0000 (10:42 +0100)
committerHerbert Xu <herbert@gondor.apana.org.au>
Sat, 5 Oct 2024 05:22:05 +0000 (13:22 +0800)
commit23717055a79981daf7fafa09a4b0d7566f8384aa
tree37f795741c7fa141f9c760b2f6161a5edc9fdc80
parent254a694378841c8a3bb490b2f1e18a2bd7f47ae2
crypto: qat - remove check after debugfs_create_dir()

The debugfs functions are guaranteed to return a valid error code
instead of NULL upon failure. Consequently, the driver can directly
propagate any error returned without additional checks.

Remove the unnecessary `if` statement after debugfs_create_dir(). If
this function fails, the error code is stored in accel_dev->debugfs_dir
and utilized in subsequent debugfs calls.

Additionally, since accel_dev->debugfs_dir is assured to be non-NULL,
remove the superfluous NULL pointer checks within the adf_dbgfs_add()
and adf_dbgfs_rm().

Fixes: 9260db6640a6 ("crypto: qat - move dbgfs init to separate file")
Signed-off-by: Giovanni Cabiddu <giovanni.cabiddu@intel.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
drivers/crypto/intel/qat/qat_common/adf_dbgfs.c