Skip to content

Commit

Permalink
device-dax/pmem: Convert comma to semicolon
Browse files Browse the repository at this point in the history
Replace a comma between expression statements by a semicolon.

Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com>
Link: https://lore.kernel.org/r/20201214134506.4831-1-zhengyongjun3@huawei.com
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
  • Loading branch information
Zheng Yongjun authored and djbw committed Dec 16, 2020
1 parent 09162bc commit 4e6a7b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/dax/pmem/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ struct dev_dax *__dax_pmem_probe(struct device *dev, enum dev_dax_subsys subsys)

/* adjust the dax_region range to the start of data */
range = pgmap.range;
range.start += offset,
range.start += offset;
dax_region = alloc_dax_region(dev, region_id, &range,
nd_region->target_node, le32_to_cpu(pfn_sb->align),
IORESOURCE_DAX_STATIC);
Expand Down

0 comments on commit 4e6a7b3

Please sign in to comment.