[PATCH 2/2] EDAC, pnd2_edac: Fix !EDAC_DEBUG build

From: Borislav Petkov
Date: Sat Mar 18 2017 - 13:50:58 EST


Provide debugfs function stubs when EDAC_DEBUG is not enabled so that we
don't fail the build:

drivers/edac/pnd2_edac.c: In function âpnd2_initâ:
drivers/edac/pnd2_edac.c:1521:2: error: implicit declaration of function âsetup_pnd2_debugâ [-Werror=implicit-function-declaration]
setup_pnd2_debug();
^
drivers/edac/pnd2_edac.c: In function âpnd2_exitâ:
drivers/edac/pnd2_edac.c:1529:2: error: implicit declaration of function âteardown_pnd2_debugâ [-Werror=implicit-function-declaration]
teardown_pnd2_debug();
^

Signed-off-by: Borislav Petkov <bp@xxxxxxx>
---
drivers/edac/pnd2_edac.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/drivers/edac/pnd2_edac.c b/drivers/edac/pnd2_edac.c
index 14d39f05226e..ec2e349d728d 100644
--- a/drivers/edac/pnd2_edac.c
+++ b/drivers/edac/pnd2_edac.c
@@ -1435,7 +1435,11 @@ static void teardown_pnd2_debug(void)
{
debugfs_remove_recursive(pnd2_test);
}
-#endif
+#else
+static void setup_pnd2_debug(void) {}
+static void teardown_pnd2_debug(void) {}
+#endif /* CONFIG_EDAC_DEBUG */
+

static int pnd2_probe(void)
{
--
2.8.4

--
Regards/Gruss,
Boris.

ECO tip #101: Trim your mails when you reply.
--