summaryrefslogtreecommitdiff
path: root/device
diff options
context:
space:
mode:
authorMarin Ramesa <mpr@hi.t-com.hr>2013-12-09 23:57:23 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2013-12-10 00:45:11 +0100
commit8d613a9cf8065e729694116132ec7ce703dabf10 (patch)
tree71593fe369d82d572d948138985b2f3fa1a6bf75 /device
parent3eea18b7787b5efaadbee5d99a729a0f4c8dedb8 (diff)
device/chario.c: trivial stylistic fix for consistency
* device/chario.c: Trivial stylistic fix for consistency.
Diffstat (limited to 'device')
-rw-r--r--device/chario.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/device/chario.c b/device/chario.c
index 8d688577..c2887d04 100644
--- a/device/chario.c
+++ b/device/chario.c
@@ -907,7 +907,7 @@ void ttypush(
if (state & TS_MIN_TO_RCV)
{ /* a character was received */
tp->t_state = state & ~TS_MIN_TO_RCV;
- timeout(ttypush,tp,pdma_timeouts[tp->t_ispeed]);
+ timeout(ttypush, tp, pdma_timeouts[tp->t_ispeed]);
}
else
{
@@ -1004,7 +1004,7 @@ void ttyinput_many(
* Do not want to overflow input queue
*/
if (tp->t_inq.c_cc < tp->t_inq.c_hog)
- count -= b_to_q( chars, count, &tp->t_inq);
+ count -= b_to_q(chars, count, &tp->t_inq);
tty_queue_completion(&tp->t_delayed_read);
}