aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnnie Li <annie.li@oracle.com>2011-11-21 20:59:56 -0500
committerKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>2011-11-22 09:26:20 -0500
commitc123799a41bf466ce5b199331aac4c1f28f67ec3 (patch)
tree6c617cf8857bf1e698d0765d3808212859a4d2e5
parent85ff6acb075a484780b3d763fdf41596d8fc0970 (diff)
xen/granttable: Keep code format clean
Acked-by: Ian Campbell <ian.campbell@citrix.com> Signed-off-by: Annie Li <annie.li@oracle.com> Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
-rw-r--r--drivers/xen/grant-table.c7
-rw-r--r--include/xen/grant_table.h2
2 files changed, 4 insertions, 5 deletions
diff --git a/drivers/xen/grant-table.c b/drivers/xen/grant-table.c
index 301869f60dc7..bd325fd0000b 100644
--- a/drivers/xen/grant-table.c
+++ b/drivers/xen/grant-table.c
@@ -50,7 +50,6 @@
50#include <asm/pgtable.h> 50#include <asm/pgtable.h>
51#include <asm/sync_bitops.h> 51#include <asm/sync_bitops.h>
52 52
53
54/* External tools reserve first few grant table entries. */ 53/* External tools reserve first few grant table entries. */
55#define NR_RESERVED_ENTRIES 8 54#define NR_RESERVED_ENTRIES 8
56#define GNTTAB_LIST_END 0xffffffff 55#define GNTTAB_LIST_END 0xffffffff
@@ -598,8 +597,8 @@ unsigned int gnttab_max_grant_frames(void)
598EXPORT_SYMBOL_GPL(gnttab_max_grant_frames); 597EXPORT_SYMBOL_GPL(gnttab_max_grant_frames);
599 598
600int gnttab_map_refs(struct gnttab_map_grant_ref *map_ops, 599int gnttab_map_refs(struct gnttab_map_grant_ref *map_ops,
601 struct gnttab_map_grant_ref *kmap_ops, 600 struct gnttab_map_grant_ref *kmap_ops,
602 struct page **pages, unsigned int count) 601 struct page **pages, unsigned int count)
603{ 602{
604 int i, ret; 603 int i, ret;
605 pte_t *pte; 604 pte_t *pte;
@@ -649,7 +648,7 @@ int gnttab_map_refs(struct gnttab_map_grant_ref *map_ops,
649EXPORT_SYMBOL_GPL(gnttab_map_refs); 648EXPORT_SYMBOL_GPL(gnttab_map_refs);
650 649
651int gnttab_unmap_refs(struct gnttab_unmap_grant_ref *unmap_ops, 650int gnttab_unmap_refs(struct gnttab_unmap_grant_ref *unmap_ops,
652 struct page **pages, unsigned int count) 651 struct page **pages, unsigned int count)
653{ 652{
654 int i, ret; 653 int i, ret;
655 654
diff --git a/include/xen/grant_table.h b/include/xen/grant_table.h
index 5494c402c83a..fea4954174f0 100644
--- a/include/xen/grant_table.h
+++ b/include/xen/grant_table.h
@@ -157,7 +157,7 @@ unsigned int gnttab_max_grant_frames(void);
157#define gnttab_map_vaddr(map) ((void *)(map.host_virt_addr)) 157#define gnttab_map_vaddr(map) ((void *)(map.host_virt_addr))
158 158
159int gnttab_map_refs(struct gnttab_map_grant_ref *map_ops, 159int gnttab_map_refs(struct gnttab_map_grant_ref *map_ops,
160 struct gnttab_map_grant_ref *kmap_ops, 160 struct gnttab_map_grant_ref *kmap_ops,
161 struct page **pages, unsigned int count); 161 struct page **pages, unsigned int count);
162int gnttab_unmap_refs(struct gnttab_unmap_grant_ref *unmap_ops, 162int gnttab_unmap_refs(struct gnttab_unmap_grant_ref *unmap_ops,
163 struct page **pages, unsigned int count); 163 struct page **pages, unsigned int count);