[PATCH] staging: erofs: Modify conditional check.
Bhagyashri P. Dighole
digholebhagyashri at gmail.com
Mon Nov 5 06:57:01 AEDT 2018
This patch includes modified condition to check for bio struct.
Signed-off-by: Bhagyashri P. Dighole <digholebhagyashri at gmail.com>
---
drivers/staging/erofs/data.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/erofs/data.c b/drivers/staging/erofs/data.c
index 6384f73..a671ad4 100644
--- a/drivers/staging/erofs/data.c
+++ b/drivers/staging/erofs/data.c
@@ -240,7 +240,7 @@ static inline struct bio *erofs_read_raw_page(
bio = NULL;
}
- if (bio == NULL) {
+ if (!bio) {
struct erofs_map_blocks map = {
.m_la = blknr_to_addr(current_block),
};
--
2.7.4
More information about the Linux-erofs
mailing list