diff options
author | Ruslan Pisarev <ruslan@rpisarev.org.ua> | 2011-07-26 15:16:26 +0400 |
---|---|---|
committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2011-07-26 21:31:58 +0400 |
commit | 7b0ac956d91b91a1e05e4e0b454d65710fc73cd8 (patch) | |
tree | d83a2ef5e6bf173cb2fc81b357112004dbd7537f /drivers/xen/gntdev.c | |
parent | 088c05a845da821fba9e5434bbcc6329368de34e (diff) | |
download | linux-7b0ac956d91b91a1e05e4e0b454d65710fc73cd8.tar.xz |
Xen: fix braces coding style issue in gntdev.c and grant-table.c
This is a patch to the gntdev.c and grant-table.c files that fixed up
braces errors found by the checkpatch.pl tools.
Signed-off-by: Ruslan Pisarev <ruslan@rpisarev.org.ua>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Diffstat (limited to 'drivers/xen/gntdev.c')
-rw-r--r-- | drivers/xen/gntdev.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/xen/gntdev.c b/drivers/xen/gntdev.c index f914b26cf0c2..772a5b8bbf2e 100644 --- a/drivers/xen/gntdev.c +++ b/drivers/xen/gntdev.c @@ -188,9 +188,8 @@ static void gntdev_put_map(struct grant_map *map) atomic_sub(map->count, &pages_mapped); - if (map->notify.flags & UNMAP_NOTIFY_SEND_EVENT) { + if (map->notify.flags & UNMAP_NOTIFY_SEND_EVENT) notify_remote_via_evtchn(map->notify.event); - } if (map->pages) { if (!use_ptemod) |