diff options
| author | Vadim Lomovtsev <[email protected]> | 2017-05-31 18:51:57 +0300 |
|---|---|---|
| committer | Borislav Petkov <[email protected]> | 2017-06-01 20:08:17 +0200 |
| commit | cf97825862f0acd7d6bad67da59962e4badc870a (patch) | |
| tree | 55606e01429620ad824fb60331763b9aa0c0ca05 | |
| parent | 7d2fdaa694c596671c0d1d8d625966f7eb8cdea8 (diff) | |
EDAC, thunderx: Fix a warning during l2c debugfs node creation
Compare the number of debugfs entries created by
thunderx_create_debugfs_nodes() with the requested number of entries to
properly determine whether to print a warning.
Signed-off-by: Vadim Lomovtsev <[email protected]>
Cc: linux-edac <[email protected]>
Cc: [email protected]
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Sergey Temerkhanov <[email protected]>
Signed-off-by: Borislav Petkov <[email protected]>
| -rw-r--r-- | drivers/edac/thunderx_edac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/edac/thunderx_edac.c b/drivers/edac/thunderx_edac.c index 86d585cb6d32..2d352b40ae1c 100644 --- a/drivers/edac/thunderx_edac.c +++ b/drivers/edac/thunderx_edac.c @@ -2080,7 +2080,7 @@ static int thunderx_l2c_probe(struct pci_dev *pdev, if (IS_ENABLED(CONFIG_EDAC_DEBUG)) { l2c->debugfs = edac_debugfs_create_dir(pdev->dev.kobj.name); - thunderx_create_debugfs_nodes(l2c->debugfs, l2c_devattr, + ret = thunderx_create_debugfs_nodes(l2c->debugfs, l2c_devattr, l2c, dfs_entries); if (ret != dfs_entries) { |