Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1338991 > unrolled thread
| Started by | Andrej Krpic <ak77@tnode.com> |
|---|---|
| First post | 2016-02-21 22:50 +0100 |
| Last post | 2016-02-21 22:50 +0100 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH 2/8] tty: n_gsm: fix C/R bit when sending as a responder Andrej Krpic <ak77@tnode.com> - 2016-02-21 22:50 +0100
| From | Andrej Krpic <ak77@tnode.com> |
|---|---|
| Date | 2016-02-21 22:50 +0100 |
| Subject | [PATCH 2/8] tty: n_gsm: fix C/R bit when sending as a responder |
| Message-ID | <r4K37-3NN-9@gated-at.bofh.it> |
According to the specification (3GPP TS 27.010 v12.0.0 R1, 5.2.1.2),
C/R bit must be the same for corresponding command and response.
If mux is an initiator (station that initiates DLC 0), valid sent
commands and received responses must have C/R bit set to 1.
For a station that is a responder, valid sent commands and received
responses must have C/R bit set to 0.
Change the value of C/R bit in command and response frames to
depend on whether the station is initator or not.
Signed-off-by: Andrej Krpic <ak77@tnode.com>
---
drivers/tty/n_gsm.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/tty/n_gsm.c b/drivers/tty/n_gsm.c
index cc3b374..a0fb92c 100644
--- a/drivers/tty/n_gsm.c
+++ b/drivers/tty/n_gsm.c
@@ -622,7 +622,7 @@ static void gsm_send(struct gsm_mux *gsm, int addr, int cr, int control)
static inline void gsm_response(struct gsm_mux *gsm, int addr, int control)
{
- gsm_send(gsm, addr, 0, control);
+ gsm_send(gsm, addr, gsm->initiator ? 0 : 1, control);
}
/**
@@ -636,7 +636,7 @@ static inline void gsm_response(struct gsm_mux *gsm, int addr, int control)
static inline void gsm_command(struct gsm_mux *gsm, int addr, int control)
{
- gsm_send(gsm, addr, 1, control);
+ gsm_send(gsm, addr, gsm->initiator ? 1 : 0, control);
}
/* Data transmission */
--
2.7.0
Back to top | Article view | linux.kernel
csiph-web