Skip to content

Commit a651c6c

Browse files
ISCAS-Vulabsuryasaimadhu
authored andcommitted
EDAC/aspeed: Remove unneeded semicolon
Remove unneeded semicolon reported by coccinelle. Signed-off-by: Xu Wang <[email protected]> Signed-off-by: Borislav Petkov <[email protected]> Acked-by: Andrew Jeffery <[email protected]> Cc: James Morse <[email protected]> Cc: Joel Stanley <[email protected]> Cc: [email protected] Cc: [email protected] Cc: linux-edac <[email protected]> Cc: Mauro Carvalho Chehab <[email protected]> Cc: Robert Richter <[email protected]> Cc: Stefan Schaeckeler <[email protected]> Cc: Tony Luck <[email protected]> Link: https://lkml.kernel.org/r/[email protected]
1 parent 2403ed2 commit a651c6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/edac/aspeed_edac.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ static int init_csrows(struct mem_ctl_info *mci)
243243
if (!np) {
244244
dev_err(mci->pdev, "dt: missing /memory node\n");
245245
return -ENODEV;
246-
};
246+
}
247247

248248
rc = of_address_to_resource(np, 0, &r);
249249

@@ -252,7 +252,7 @@ static int init_csrows(struct mem_ctl_info *mci)
252252
if (rc) {
253253
dev_err(mci->pdev, "dt: failed requesting resource for /memory node\n");
254254
return rc;
255-
};
255+
}
256256

257257
dev_dbg(mci->pdev, "dt: /memory node resources: first page r.start=0x%x, resource_size=0x%x, PAGE_SHIFT macro=0x%x\n",
258258
r.start, resource_size(&r), PAGE_SHIFT);

0 commit comments

Comments
 (0)