]> git.baikalelectronics.ru Git - kernel.git/commit
platform/x86: intel_pmc_core: avoid boot time warning for !CONFIG_DEBUGFS_FS
authorArnd Bergmann <arnd@arndb.de>
Mon, 10 Oct 2016 11:12:58 +0000 (13:12 +0200)
committerDarren Hart <dvhart@linux.intel.com>
Wed, 12 Oct 2016 08:12:28 +0000 (01:12 -0700)
commit3476fe6b3483a32fa24deb45ccd3d59c9825a013
treec104bd156e074785c14ca2df8e73648e57f4df28
parent60b41baca0bf6b1207a345ca42fe6dfdd64f6acd
platform/x86: intel_pmc_core: avoid boot time warning for !CONFIG_DEBUGFS_FS

While looking at a patch that introduced a compile-time warning
"‘pmc_core_dev_state_get’ defined but not used" (I sent a patch
for debugfs to fix it), I noticed that the same patch caused
it in intel_pmc_core also introduced a bogus run-time warning:
"PMC Core: debugfs register failed".

The problem is the IS_ERR_OR_NULL() check that as usual gets
things wrong: when CONFIG_DEBUGFS_FS is disabled,
debugfs_create_dir() fails with an error code, and we don't
need to warn about it, unlike the case in which it returns
NULL.

This reverts the driver to the previous state of not warning
about CONFIG_DEBUGFS_FS being disabled. I chose not to
restore the driver to making a runtime error in debugfs
fatal in pmc_core_probe().

Fixes: b8bd00f32d6f ("intel_pmc_core: Convert to DEFINE_DEBUGFS_ATTRIBUTE")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
drivers/platform/x86/intel_pmc_core.c