aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/openbsc/gsm_data.h
diff options
context:
space:
mode:
authorMike Haben <michael.haben@btinternet.com>2009-10-02 12:19:34 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2009-10-05 12:12:54 +0200
commite2d82274990ddae78cabdb96087ed90ffd7a9d3a (patch)
treef0107ef917bc4df83773bf31d76507f01aa57a81 /openbsc/include/openbsc/gsm_data.h
parenta03f97775b0f853195bc2c8dad9397863ebd6c10 (diff)
[ipaccess] Add nanoBTS 1900 support
Add support for 1900 nanoBTS by using unified bts_type GSM_BTS_TYPE_NANOBTS for 900, 1800 and 1900 versions. Reduce the nanoBTS enum values to one and derive the version from the user supplied band. In the future we might want to do auto band detection. The configuration file needs to be changed to refer to nanobts instead of nanobts900/nanobts1800. Signed-off-by: Mike Haben <michael.haben@btinternet.com> Signed-off-by: Holger Hans Peter Freyther <zecke@selfish.org>
Diffstat (limited to 'openbsc/include/openbsc/gsm_data.h')
-rw-r--r--openbsc/include/openbsc/gsm_data.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/openbsc/include/openbsc/gsm_data.h b/openbsc/include/openbsc/gsm_data.h
index 495f74119..a493a69d9 100644
--- a/openbsc/include/openbsc/gsm_data.h
+++ b/openbsc/include/openbsc/gsm_data.h
@@ -242,8 +242,7 @@ struct gsm_bts_trx {
enum gsm_bts_type {
GSM_BTS_TYPE_UNKNOWN,
GSM_BTS_TYPE_BS11,
- GSM_BTS_TYPE_NANOBTS_900,
- GSM_BTS_TYPE_NANOBTS_1800,
+ GSM_BTS_TYPE_NANOBTS,
};
/**
@@ -445,8 +444,7 @@ extern void *tall_bsc_ctx;
static inline int is_ipaccess_bts(struct gsm_bts *bts)
{
switch (bts->type) {
- case GSM_BTS_TYPE_NANOBTS_900:
- case GSM_BTS_TYPE_NANOBTS_1800:
+ case GSM_BTS_TYPE_NANOBTS:
return 1;
default:
break;