aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bts-sysmo/sysmobts_ctrl.c
diff options
context:
space:
mode:
authorMartin Hauke <mardnh@gmx.de>2019-10-13 19:09:39 +0200
committerlaforge <laforge@osmocom.org>2019-10-17 08:05:35 +0000
commitb378fccef11b41009f224ded1f42bdbf254eee6d (patch)
tree4e311110af84948fc3e93425b674c9fcac449d76 /src/osmo-bts-sysmo/sysmobts_ctrl.c
parentb58fb35754591846dc20420da29e504166290eea (diff)
Fix common misspellings and typos
Diffstat (limited to 'src/osmo-bts-sysmo/sysmobts_ctrl.c')
-rw-r--r--src/osmo-bts-sysmo/sysmobts_ctrl.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/osmo-bts-sysmo/sysmobts_ctrl.c b/src/osmo-bts-sysmo/sysmobts_ctrl.c
index 21df88e5..c6dac58c 100644
--- a/src/osmo-bts-sysmo/sysmobts_ctrl.c
+++ b/src/osmo-bts-sysmo/sysmobts_ctrl.c
@@ -94,7 +94,7 @@ static int get_clock_info(struct ctrl_cmd *cmd, void *data)
SuperFemto_Prim_t *sysp = msgb_sysprim(msg);
struct ctrl_cmd_def *cd;
- /* geneate a deferred control command */
+ /* generate a deferred control command */
cd = ctrl_cmd_def_make(fl1h, cmd, NULL, 10);
sysp->id = SuperFemto_PrimId_RfClockInfoReq;
@@ -136,7 +136,7 @@ static int set_clock_info(struct ctrl_cmd *cmd, void *data)
SuperFemto_Prim_t *sysp = msgb_sysprim(msg);
struct ctrl_cmd_def *cd;
- /* geneate a deferred control command */
+ /* generate a deferred control command */
cd = ctrl_cmd_def_make(fl1h, cmd, NULL, 10);
/* Set GPS/PPS as reference */
@@ -197,7 +197,7 @@ static int get_clock_corr(struct ctrl_cmd *cmd, void *data)
* prefer to to ask the actual L1 about the currently used value to
* avoid any mistakes */
- /* geneate a deferred control command */
+ /* generate a deferred control command */
cd = ctrl_cmd_def_make(fl1h, cmd, NULL, 10);
sysp->id = SuperFemto_PrimId_RfClockInfoReq;
@@ -241,7 +241,7 @@ static int set_clock_corr(struct ctrl_cmd *cmd, void *data)
fl1h->clk_cal = atoi(cmd->value);
- /* geneate a deferred control command */
+ /* generate a deferred control command */
cd = ctrl_cmd_def_make(fl1h, cmd, NULL, 10);
sysp->id = SuperFemto_PrimId_RfClockSetupReq;