summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDebian Mobcom Maintainers <Debian-mobcom-maintainers@lists.alioth.debian.org>2018-11-06 21:52:40 +0100
committerRuben Undheim <ruben.undheim@gmail.com>2018-11-06 21:52:40 +0100
commit2bb276187f1da74c5c9c2004a1f524ed4b205805 (patch)
treeda41c0b583146166d5424be8f01ea6ea4e8e4d19
parentd9490cc819810b5eb96d1786f0d1fc1debfc0ab2 (diff)
spelling
=================================================================== Gbp-Pq: Name spelling.patch
-rw-r--r--src/common/pcu_sock.c2
-rw-r--r--src/common/rsl.c2
-rw-r--r--src/osmo-bts-trx/trx_if.c2
-rw-r--r--src/osmo-bts-trx/trx_vty.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/common/pcu_sock.c b/src/common/pcu_sock.c
index 5f94050..7b3993c 100644
--- a/src/common/pcu_sock.c
+++ b/src/common/pcu_sock.c
@@ -641,7 +641,7 @@ static int pcu_rx(struct gsm_network *net, uint8_t msg_type,
rc = pcu_rx_txt_ind(bts, &pcu_prim->u.txt_ind);
break;
default:
- LOGP(DPCU, LOGL_ERROR, "Received unknwon PCU msg type %d\n",
+ LOGP(DPCU, LOGL_ERROR, "Received unknown PCU msg type %d\n",
msg_type);
rc = -EINVAL;
}
diff --git a/src/common/rsl.c b/src/common/rsl.c
index 5dd2c59..ac29885 100644
--- a/src/common/rsl.c
+++ b/src/common/rsl.c
@@ -2815,7 +2815,7 @@ static int rsl_rx_ipaccess(struct gsm_bts_trx *trx, struct msgb *msg)
msg->lchan = lchan_lookup(trx, dch->chan_nr, "RSL rx IPACC: ");
if (!msg->lchan) {
- LOGP(DRSL, LOGL_ERROR, "Rx RSL %s for unknow lchan\n",
+ LOGP(DRSL, LOGL_ERROR, "Rx RSL %s for unknown lchan\n",
rsl_msg_name(dch->c.msg_type));
return rsl_reject_unknown_lchan(msg);
}
diff --git a/src/osmo-bts-trx/trx_if.c b/src/osmo-bts-trx/trx_if.c
index f3de245..156cf9d 100644
--- a/src/osmo-bts-trx/trx_if.c
+++ b/src/osmo-bts-trx/trx_if.c
@@ -532,7 +532,7 @@ static int trx_data_read_cb(struct osmo_fd *ofd, unsigned int what)
burst_len = EGPRS_BURST_LEN;
/* Accept bursts ending with 2 bytes of padding (OpenBTS compatible trx) or without them: */
} else if (len != GSM_BURST_LEN + 10 && len != GSM_BURST_LEN + 8) {
- LOGP(DTRX, LOGL_NOTICE, "Got data message with invalid lenght "
+ LOGP(DTRX, LOGL_NOTICE, "Got data message with invalid length "
"'%d'\n", len);
return -EINVAL;
}
diff --git a/src/osmo-bts-trx/trx_vty.c b/src/osmo-bts-trx/trx_vty.c
index 1dfc617..4e86b77 100644
--- a/src/osmo-bts-trx/trx_vty.c
+++ b/src/osmo-bts-trx/trx_vty.c
@@ -234,7 +234,7 @@ DEFUN(cfg_phyinst_maxdlynb, cfg_phyinst_maxdlynb_cmd,
OSMOTRX_STR
"Set the maximum acceptable delay of a Normal Burst (in GSM symbols)."
" USE FOR TESTING ONLY, DON'T CHANGE IN PRODUCTION USE!"
- " During normal operation, Normal Bursts delay are controled by a Timing"
+ " During normal operation, Normal Bursts delay are controlled by a Timing"
" Advance control loop and thus Normal Bursts arrive to a BTS with no more"
" than a couple GSM symbols, which is already taken into account in osmo-trx."
" So changing this setting will have no effect in production installations"