gprs: Fix LOGP misuse and specify LOGL_NOTICE as region.

This commit is contained in:
Holger Hans Peter Freyther 2010-06-23 09:48:25 +08:00
parent f7a1c23e1d
commit 2788b96bf4
1 changed files with 2 additions and 1 deletions

View File

@ -417,7 +417,8 @@ static int gprs_llc_hdr_rx(struct gprs_llc_hdr_parsed *gph,
break;
case GPRS_LLC_UI:
if (gph->seq_tx < lle->vu_recv) {
LOGP(DLLC, "TLLI=%08x dropping UI, vurecv %u <= %u\n",
LOGP(DLLC, LOGL_NOTICE, "TLLI=%08x dropping UI, vurecv %u <= %u\n",
lle->llme ? lle->llme->tlli : -1,
gph->seq_tx, lle->vu_recv);
return -EIO;
}