Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2c722c9a authored by Tobias Klauser's avatar Tobias Klauser Committed by Boaz Harrosh
Browse files

exofs: Remove redundant unlikely()



IS_ERR() already implies unlikely(), so it can be omitted here.

Signed-off-by: default avatarTobias Klauser <tklauser@distanz.ch>
parent 521cb40b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -495,7 +495,7 @@ static int exofs_read_lookup_dev_table(struct exofs_sb_info **psbi,
		}

		od = osduld_info_lookup(&odi);
		if (unlikely(IS_ERR(od))) {
		if (IS_ERR(od)) {
			ret = PTR_ERR(od);
			EXOFS_ERR("ERROR: device requested is not found "
				  "osd_name-%s =>%d\n", odi.osdname, ret);