提交 b7a80dac 编写于 作者: D Dan Carpenter 提交者: Martin K. Petersen

scsi: ufs: ufs-exynos: Remove an unnecessary NULL check

The "head" pointer can't be NULL because it points to an address in the
middle of a ufs_hba struct.  Looking at this code, probably someone would
wonder if the intent was to check whether "hba" is NULL, but "hba" isn't
NULL and the check can just be removed.

Link: https://lore.kernel.org/r/20200626105133.GF314359@mwandaAcked-by: NAlim Akhtar <alim.akhtar@samsung.com>
Signed-off-by: NDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: NMartin K. Petersen <martin.petersen@oracle.com>
上级 fbca7a04
...@@ -264,7 +264,7 @@ static int exynos_ufs_get_clk_info(struct exynos_ufs *ufs) ...@@ -264,7 +264,7 @@ static int exynos_ufs_get_clk_info(struct exynos_ufs *ufs)
u8 div = 0; u8 div = 0;
int ret = 0; int ret = 0;
if (!head || list_empty(head)) if (list_empty(head))
goto out; goto out;
list_for_each_entry(clki, head, list) { list_for_each_entry(clki, head, list) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册