aboutsummaryrefslogtreecommitdiffstats
path: root/arch/s390/kernel/kdebugfs.c
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-01-22 16:21:02 +0100
committerMartin Schwidefsky <schwidefsky@de.ibm.com>2019-01-28 15:58:55 +0100
commit7dd541a3fb34b34f0f25154dd0d24d0d9b1ca0f3 (patch)
tree3b6063304304f864440d70e759b2508259edb137 /arch/s390/kernel/kdebugfs.c
parents390: pci: no need to check return value of debugfs_create functions (diff)
downloadlinux-dev-7dd541a3fb34b34f0f25154dd0d24d0d9b1ca0f3.tar.xz
linux-dev-7dd541a3fb34b34f0f25154dd0d24d0d9b1ca0f3.zip
s390: no need to check return value of debugfs_create functions
When calling debugfs functions, there is no need to ever check the return value. The function can work or not, but the code logic should never do something different based on this. Cc: Martin Schwidefsky <schwidefsky@de.ibm.com> Cc: Heiko Carstens <heiko.carstens@de.ibm.com> Cc: Kees Cook <keescook@chromium.org> Cc: Christian Borntraeger <borntraeger@de.ibm.com> Cc: Hendrik Brueckner <brueckner@linux.vnet.ibm.com> Cc: linux-s390@vger.kernel.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/kernel/kdebugfs.c')
-rw-r--r--arch/s390/kernel/kdebugfs.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/s390/kernel/kdebugfs.c b/arch/s390/kernel/kdebugfs.c
index 2c46bd6c6fd2..33130c7daf55 100644
--- a/arch/s390/kernel/kdebugfs.c
+++ b/arch/s390/kernel/kdebugfs.c
@@ -9,8 +9,6 @@ EXPORT_SYMBOL(arch_debugfs_dir);
static int __init arch_kdebugfs_init(void)
{
arch_debugfs_dir = debugfs_create_dir("s390", NULL);
- if (IS_ERR(arch_debugfs_dir))
- arch_debugfs_dir = NULL;
return 0;
}
postcore_initcall(arch_kdebugfs_init);