gb: suspend_ref was changed to a plain uint8_t, update the code

Require a 0.5.2+ libosmogb due the change of the suspend_ref type.
This commit is contained in:
Holger Hans Peter Freyther 2012-08-03 10:01:57 +02:00
parent 1a6b83c919
commit 9b5db287c6
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 0.3.2)
PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 0.3.0)
PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 0.3.0)
PKG_CHECK_MODULES(LIBOSMOABIS, libosmoabis >= 0.1.0)
PKG_CHECK_MODULES(LIBOSMOGB, libosmogb >= 0.5.1)
PKG_CHECK_MODULES(LIBOSMOGB, libosmogb >= 0.5.2)
found_libgtp=yes
PKG_CHECK_MODULES(LIBGTP, libgtp, , found_libgtp=no)

View File

@ -119,7 +119,7 @@ int bssgp_prim_cb(struct osmo_prim_hdr *oph, void *ctx)
return gprs_gmm_rx_suspend(bp->ra_id, bp->tlli);
case PRIM_BSSGP_GMM_RESUME:
return gprs_gmm_rx_resume(bp->ra_id, bp->tlli,
*bp->u.resume.suspend_ref);
bp->u.resume.suspend_ref);
}
break;
case SAP_BSSGP_NM: