diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2023-06-27 01:06:42 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2023-06-27 01:06:42 +0300 |
commit | e5ce2f196fb9ab35fe18dcfd2bc17883db7bbe33 (patch) | |
tree | 0f3d1e139a84de386cbebecb66bdab1caef369e9 /drivers/edac/thunderx_edac.c | |
parent | 88afbb21d4b36fee6acaa167641f9f0fc122f01b (diff) | |
parent | 852667c317ae23f366cfaade3b9269b1943888dd (diff) | |
download | linux-e5ce2f196fb9ab35fe18dcfd2bc17883db7bbe33.tar.xz |
Merge tag 'edac_updates_for_v6.5' of git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras
Pull EDAC updates from Borislav Petkov:
- amd64_edac: Add support for Zen4 client hardware
- amd64_edac: Remove the version string as it is useless and actively
confusing when looking at backported versions of the driver
- Add a driver for the Nuvoton NPCM memory controller
- A debugfs error checking cleanup
* tag 'edac_updates_for_v6.5' of git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras:
EDAC/npcm: Add NPCM memory controller driver
dt-bindings: memory-controllers: nuvoton: Add NPCM memory controller
EDAC/thunderx: Check debugfs file creation retval properly
EDAC/amd64: Add support for ECC on family 19h model 60h-7Fh
EDAC/amd64: Remove module version string
Diffstat (limited to 'drivers/edac/thunderx_edac.c')
-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 0bcd9f02c84a..b9c5772da959 100644 --- a/drivers/edac/thunderx_edac.c +++ b/drivers/edac/thunderx_edac.c @@ -481,7 +481,7 @@ static int thunderx_create_debugfs_nodes(struct dentry *parent, ent = edac_debugfs_create_file(attrs[i]->name, attrs[i]->mode, parent, data, &attrs[i]->fops); - if (!ent) + if (IS_ERR(ent)) break; } |