Commit bf69aa90 authored by Sachin Kamat's avatar Sachin Kamat Committed by Takashi Iwai

ALSA: rme9652: Remove redundant break

'break' after return statement is not necessary.
Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 79ae92dd
...@@ -3996,7 +3996,6 @@ static int hdspm_tco_sync_check(struct hdspm *hdspm) ...@@ -3996,7 +3996,6 @@ static int hdspm_tco_sync_check(struct hdspm *hdspm)
return 1; return 1;
} }
return 0; return 0;
break;
case AES32: case AES32:
status = hdspm_read(hdspm, HDSPM_statusRegister); status = hdspm_read(hdspm, HDSPM_statusRegister);
if (status & HDSPM_tcoLockAes) { if (status & HDSPM_tcoLockAes) {
...@@ -4006,9 +4005,6 @@ static int hdspm_tco_sync_check(struct hdspm *hdspm) ...@@ -4006,9 +4005,6 @@ static int hdspm_tco_sync_check(struct hdspm *hdspm)
return 1; return 1;
} }
return 0; return 0;
break;
case RayDAT: case RayDAT:
case AIO: case AIO:
status = hdspm_read(hdspm, HDSPM_RD_STATUS_1); status = hdspm_read(hdspm, HDSPM_RD_STATUS_1);
...@@ -4018,7 +4014,6 @@ static int hdspm_tco_sync_check(struct hdspm *hdspm) ...@@ -4018,7 +4014,6 @@ static int hdspm_tco_sync_check(struct hdspm *hdspm)
if (status & 0x4000000) if (status & 0x4000000)
return 1; /* Lock */ return 1; /* Lock */
return 0; /* No signal */ return 0; /* No signal */
break;
default: default:
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment