diff options
| author | Borislav Petkov (AMD) <bp@alien8.de> | 2026-07-23 12:43:23 -0700 |
|---|---|---|
| committer | Borislav Petkov (AMD) <bp@alien8.de> | 2026-07-23 12:43:23 -0700 |
| commit | 4020f22dccb18f04ace6c8481dddc01603d21173 (patch) | |
| tree | 48fc2573f6507870913d898e3265e09083f725eb | |
| parent | 10ca1b67a6703d100e17f90789df106f35ee6c58 (diff) | |
| parent | 0c4775d3a756b923c815327dc585ee167057ed52 (diff) | |
| download | linux-next-4020f22dccb18f04ace6c8481dddc01603d21173.tar.gz linux-next-4020f22dccb18f04ace6c8481dddc01603d21173.zip | |
Merge ras/edac-amd-atl into for-next
* ras/edac-amd-atl:
RAS/AMD/ATL: Remove conditional return with no effect
Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de>
| -rw-r--r-- | drivers/ras/amd/atl/map.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/ras/amd/atl/map.c b/drivers/ras/amd/atl/map.c index 24a05af747d5..4ec9333ef745 100644 --- a/drivers/ras/amd/atl/map.c +++ b/drivers/ras/amd/atl/map.c @@ -771,9 +771,5 @@ int get_address_map(struct addr_ctx *ctx) dump_address_map(&ctx->map); - ret = validate_address_map(ctx); - if (ret) - return ret; - - return ret; + return validate_address_map(ctx); } |
