fix various compiler warnings while building bs11_config

This commit is contained in:
Harald Welte 2009-02-21 12:59:58 +00:00
parent 7bc4cbc45c
commit 099d6100e6
3 changed files with 12 additions and 9 deletions

8
include/openbsc/rs232.h Normal file
View File

@ -0,0 +1,8 @@
#ifndef _RS232_H
#define _RS232_H
int rs232_setup(const char *serial_port, unsigned int delay_ms);
int handle_serial_msg(struct msgb *msg);
#endif /* _RS232_H */

View File

@ -40,6 +40,7 @@
#include <openbsc/tlv.h>
#include <openbsc/debug.h>
#include <openbsc/select.h>
#include <openbsc/rs232.h>
/* state of our bs11_config application */
enum bs11cfg_state {
@ -76,9 +77,6 @@ int handle_serial_msg(struct msgb *rx_msg);
/* create all objects for an initial configuration */
static int create_objects(struct gsm_bts *bts)
{
u_int8_t bbsig1_attr[sizeof(obj_bbsig0_attr)+12];
u_int8_t *cur = bbsig1_attr;
fprintf(stdout, "Crating Objects for minimal config\n");
abis_nm_bs11_create_object(bts, BS11_OBJ_LI, 0, sizeof(obj_li_attr),
obj_li_attr);
@ -343,11 +341,6 @@ static void print_state(struct tlv_parsed *tp)
printf("\n");
}
static char *print_bcd(u_int8_t *bcd, int len)
{
return "FIXME";
}
static int print_attr(struct tlv_parsed *tp)
{
if (TLVP_PRESENT(tp, NM_ATT_BS11_ESN_PCB_SERIAL)) {
@ -370,7 +363,8 @@ static int print_attr(struct tlv_parsed *tp)
#endif
if (TLVP_PRESENT(tp, NM_ATT_ABIS_CHANNEL) &&
TLVP_LEN(tp, NM_ATT_ABIS_CHANNEL) >= 3) {
struct abis_nm_channel *chan = TLVP_VAL(tp, NM_ATT_ABIS_CHANNEL)-1;
struct abis_nm_channel *chan =
(struct abis_nm_channel*) TLVP_VAL(tp, NM_ATT_ABIS_CHANNEL)-1;
printf("\tE1 Channel: Port=%u Timeslot=%u ",
chan->bts_port, chan->timeslot);
if (chan->subslot == 0xff)

View File

@ -32,6 +32,7 @@
#include <openbsc/msgb.h>
#include <openbsc/debug.h>
#include <openbsc/gsm_data.h>
#include <openbsc/rs232.h>
/* adaption layer from GSM 08.59 + 12.21 to RS232 */