aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxc/xc_tbuf.c
diff options
context:
space:
mode:
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2006-04-15 10:07:31 +0100
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2006-04-15 10:07:31 +0100
commitc702fb4c9dcc27c2ab09cf1a4bd0e5f6f6b4d6ac (patch)
tree414c242496d1fa205931b1a0d16727cc2e234243 /tools/libxc/xc_tbuf.c
parent660442fdafa7c0d0b145c0ae372aa3e93c7322eb (diff)
downloadxen-c702fb4c9dcc27c2ab09cf1a4bd0e5f6f6b4d6ac.tar.gz
xen-c702fb4c9dcc27c2ab09cf1a4bd0e5f6f6b4d6ac.tar.bz2
xen-c702fb4c9dcc27c2ab09cf1a4bd0e5f6f6b4d6ac.zip
Fix whitespace in libxc. Tabs are manually fixed.
Trailing whitespace removed with: perl -p -i -e 's/\s+$/\n/g' tools/libxc/*.[ch] Signed-off-by: Hollis Blanchard <hollisb@us.ibm.com>
Diffstat (limited to 'tools/libxc/xc_tbuf.c')
-rw-r--r--tools/libxc/xc_tbuf.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/libxc/xc_tbuf.c b/tools/libxc/xc_tbuf.c
index b9a5e51a01..3a427a0171 100644
--- a/tools/libxc/xc_tbuf.c
+++ b/tools/libxc/xc_tbuf.c
@@ -1,8 +1,8 @@
/******************************************************************************
* xc_tbuf.c
- *
+ *
* API for manipulating and accessing trace buffer parameters
- *
+ *
* Copyright (c) 2005, Rob Gardner
*/
@@ -18,7 +18,7 @@ int xc_tbuf_enable(int xc_handle, int enable)
op.u.tbufcontrol.op = DOM0_TBUF_ENABLE;
else
op.u.tbufcontrol.op = DOM0_TBUF_DISABLE;
-
+
return xc_dom0_op(xc_handle, &op);
}
@@ -30,10 +30,10 @@ int xc_tbuf_set_size(int xc_handle, uint32_t size)
op.interface_version = DOM0_INTERFACE_VERSION;
op.u.tbufcontrol.op = DOM0_TBUF_SET_SIZE;
op.u.tbufcontrol.size = size;
-
+
return xc_dom0_op(xc_handle, &op);
}
-
+
int xc_tbuf_get_size(int xc_handle, uint32_t *size)
{
int rc;