aboutsummaryrefslogtreecommitdiff
path: root/sim/common/dv-pal.c
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2011-05-11 20:02:42 +0000
committerMike Frysinger <vapier@gentoo.org>2011-05-11 20:02:42 +0000
commit34b47c3828ca8e6d9dcddb2886744fb470e4276c (patch)
treec6e8881cf59afd20bc6090bb7a2416c0ec1fd1cd /sim/common/dv-pal.c
parent1f84b6196ba7218766be02547881a5c2165be3ae (diff)
downloadgdb-34b47c3828ca8e6d9dcddb2886744fb470e4276c.zip
gdb-34b47c3828ca8e6d9dcddb2886744fb470e4276c.tar.gz
gdb-34b47c3828ca8e6d9dcddb2886744fb470e4276c.tar.bz2
sim: fix func call style (space before paren)
Committed this as obvious: -foo(...); +foo (...); Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'sim/common/dv-pal.c')
-rw-r--r--sim/common/dv-pal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sim/common/dv-pal.c b/sim/common/dv-pal.c
index c831d0a..4d49587 100644
--- a/sim/common/dv-pal.c
+++ b/sim/common/dv-pal.c
@@ -306,7 +306,7 @@ scan_hw_pal (struct hw *me)
hw_pal_device *hw_pal = (hw_pal_device *)hw_data (me);
char c;
int count;
- count = do_hw_poll_read (me, hw_pal->reader, 0/*STDIN*/, &c, sizeof(c));
+ count = do_hw_poll_read (me, hw_pal->reader, 0/*STDIN*/, &c, sizeof (c));
switch (count)
{
case HW_IO_NOT_READY:
@@ -482,7 +482,7 @@ hw_pal_io_write_buffer (struct hw *me,
#if NOT_YET
static void
-hw_pal_instance_delete_callback(hw_instance *instance)
+hw_pal_instance_delete_callback (hw_instance *instance)
{
/* nothing to delete, the hw_pal is attached to the struct hw */
return;