Commit 031d1e0f authored by Tomohiro Kusumi's avatar Tomohiro Kusumi Committed by Martin K. Petersen

scsi: ufs: fix wrong/ambiguous fall through comments

These aren't really falling through to anywhere meaningful.
Signed-off-by: default avatarTomohiro Kusumi <tkusumi@tuxera.com>
Reviewed-by: default avatarSubhash Jadavani <subhashj@codeaurora.org>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent 03b1a062
...@@ -553,15 +553,14 @@ static inline u32 ufshcd_get_intr_mask(struct ufs_hba *hba) ...@@ -553,15 +553,14 @@ static inline u32 ufshcd_get_intr_mask(struct ufs_hba *hba)
case UFSHCI_VERSION_10: case UFSHCI_VERSION_10:
intr_mask = INTERRUPT_MASK_ALL_VER_10; intr_mask = INTERRUPT_MASK_ALL_VER_10;
break; break;
/* allow fall through */
case UFSHCI_VERSION_11: case UFSHCI_VERSION_11:
case UFSHCI_VERSION_20: case UFSHCI_VERSION_20:
intr_mask = INTERRUPT_MASK_ALL_VER_11; intr_mask = INTERRUPT_MASK_ALL_VER_11;
break; break;
/* allow fall through */
case UFSHCI_VERSION_21: case UFSHCI_VERSION_21:
default: default:
intr_mask = INTERRUPT_MASK_ALL_VER_21; intr_mask = INTERRUPT_MASK_ALL_VER_21;
break;
} }
return intr_mask; return intr_mask;
......
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