mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 02:21:52 +09:00
media: dvb_frontend: remove redundant status self assignment
The assignment status to itself is redundant and can be removed. Detected with Coccinelle. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
committed by
Mauro Carvalho Chehab
parent
c4d84547d5
commit
2ddc125de8
@@ -2138,7 +2138,6 @@ static int DRX_Start(struct drxd_state *state, s32 off)
|
||||
}
|
||||
break;
|
||||
}
|
||||
status = status;
|
||||
if (status < 0)
|
||||
break;
|
||||
|
||||
@@ -2249,7 +2248,6 @@ static int DRX_Start(struct drxd_state *state, s32 off)
|
||||
break;
|
||||
|
||||
}
|
||||
status = status;
|
||||
if (status < 0)
|
||||
break;
|
||||
|
||||
@@ -2316,7 +2314,6 @@ static int DRX_Start(struct drxd_state *state, s32 off)
|
||||
}
|
||||
break;
|
||||
}
|
||||
status = status;
|
||||
if (status < 0)
|
||||
break;
|
||||
|
||||
|
||||
@@ -674,7 +674,6 @@ static int PowerScan(struct tda_state *state,
|
||||
Count = 200000;
|
||||
wait = true;
|
||||
}
|
||||
status = status;
|
||||
if (status < 0)
|
||||
break;
|
||||
if (CID_Gain >= CID_Target) {
|
||||
|
||||
Reference in New Issue
Block a user