gsm_pchan2chan_nr: move warning to pragma message and track issue

Take the chance to move the default option to the end as it's the
usually expected syntax.

Change-Id: I21298fcd0d1c1aafdd3dc1e8c8dae37b271b1d3d
This commit is contained in:
Pau Espin 2018-02-01 18:54:50 +01:00
parent 40c05f07f4
commit 5cef0623ef
1 changed files with 3 additions and 3 deletions

View File

@ -675,15 +675,15 @@ uint8_t gsm_pchan2chan_nr(enum gsm_phys_chan_config pchan,
cbits = 0x08; cbits = 0x08;
cbits += lchan_nr; cbits += lchan_nr;
break; break;
default:
case GSM_PCHAN_CCCH: case GSM_PCHAN_CCCH:
default:
/* OSMO_ASSERT(lchan_nr == 0); /* OSMO_ASSERT(lchan_nr == 0);
* FIXME: On octphy and litecell, we hit above assertion (see * FIXME: On octphy and litecell, we hit above assertion (see
* Max's comment at https://gerrit.osmocom.org/589 ); disabled * Max's comment at https://gerrit.osmocom.org/589 ); disabled
* for BTS until this is clarified; remove the #ifdef when it * for BTS until this is clarified; remove the #ifdef when it
* is fixed. * is fixed. Tracked in OS#2906.
*/ */
#warning "fix caller that passes lchan_nr != 0" #pragma message "fix caller that passes lchan_nr != 0"
cbits = 0x10; cbits = 0x10;
break; break;
} }