diff options
author | Chen Ni <[email protected]> | 2024-07-10 09:42:08 +0800 |
---|---|---|
committer | Juergen Gross <[email protected]> | 2024-07-11 08:48:28 +0200 |
commit | fab451d1582cde6073c271f0520c2348a4f1398e (patch) | |
tree | 8d858cb08de484db67116f2162616605772fb9fb | |
parent | 611ff1b1ae989a7bcce3e2a8e132ee30e968c557 (diff) |
xen/arm: Convert comma to semicolon
Replace a comma between expression statements by a semicolon.
Signed-off-by: Chen Ni <[email protected]>
Reviewed-by: Stefano Stabellini <[email protected]>
Message-ID: <[email protected]>
Signed-off-by: Juergen Gross <[email protected]>
-rw-r--r-- | arch/arm/xen/p2m.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/xen/p2m.c b/arch/arm/xen/p2m.c index 309648c17f48..9da57a5b81c7 100644 --- a/arch/arm/xen/p2m.c +++ b/arch/arm/xen/p2m.c @@ -109,7 +109,7 @@ int set_foreign_p2m_mapping(struct gnttab_map_grant_ref *map_ops, * immediate unmapping. */ map_ops[i].status = GNTST_general_error; - unmap.host_addr = map_ops[i].host_addr, + unmap.host_addr = map_ops[i].host_addr; unmap.handle = map_ops[i].handle; map_ops[i].handle = INVALID_GRANT_HANDLE; if (map_ops[i].flags & GNTMAP_device_map) |