Skip to content
This repository was archived by the owner on Nov 8, 2023. It is now read-only.

Commit fab451d

Browse files
Chen Nijgross1
authored andcommitted
xen/arm: Convert comma to semicolon
Replace a comma between expression statements by a semicolon. Signed-off-by: Chen Ni <nichen@iscas.ac.cn> Reviewed-by: Stefano Stabellini <sstabellini@kernel.org> Message-ID: <20240710014208.1719662-1-nichen@iscas.ac.cn> Signed-off-by: Juergen Gross <jgross@suse.com>
1 parent 611ff1b commit fab451d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/arm/xen/p2m.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ int set_foreign_p2m_mapping(struct gnttab_map_grant_ref *map_ops,
109109
* immediate unmapping.
110110
*/
111111
map_ops[i].status = GNTST_general_error;
112-
unmap.host_addr = map_ops[i].host_addr,
112+
unmap.host_addr = map_ops[i].host_addr;
113113
unmap.handle = map_ops[i].handle;
114114
map_ops[i].handle = INVALID_GRANT_HANDLE;
115115
if (map_ops[i].flags & GNTMAP_device_map)

0 commit comments

Comments
 (0)