]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commit
regmap: no need to check return value of debugfs_create functions
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 31 Jul 2019 13:29:23 +0000 (15:29 +0200)
committerMark Brown <broonie@kernel.org>
Thu, 1 Aug 2019 13:06:56 +0000 (14:06 +0100)
commit9d52a35ebd4bb6e495ab06e4ce1f568daa0f70e1
treeaa35143887d8cd51b25e943dd11df8bbe54a7b74
parent5f9e832c137075045d15cd6899ab0505cfb2ca4b
regmap: 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.

The debugfs core will warn if a file or directory can not be created, so
there's no need to duplicate the warning, nor really do anything else.

Cc: Mark Brown <broonie@kernel.org>
Cc: "Rafael J. Wysocki" <rafael@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Link: https://lore.kernel.org/r/20190731132923.GA13829@kroah.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/base/regmap/regmap-debugfs.c