aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-07-01 09:27:14 +0200
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2013-07-01 09:30:02 +0200
commit2523cdbc7f03a1114e5cb8b17f6ce06f846d28ea (patch)
tree523b26faa57f285e7b5f07562465fb843e0264c7 /src
parent6404a766617ba3dac02374b4e0d6cbc8b7b9770d (diff)
misc: Fix various warnings in the code
sysmobts_vty.c: In function 'activate_lchan': sysmobts_vty.c:373:3: warning: implicit declaration of function 'lchan_activate' [-Wimplicit-function-declaration] sysmobts_vty.c:375:3: warning: implicit declaration of function 'lchan_deactivate' [-Wimplicit-function-declaration] eeprom.c: In function 'eeprom_ReadEthAddr': eeprom.c:305:5: warning: pointer targets in passing argument 3 of 'eeprom_read' differ in signedness [-Wpointer-sign] eeprom.c:260:12: note: expected 'char *' but argument is of type 'uint8_t *'
Diffstat (limited to 'src')
-rw-r--r--src/osmo-bts-sysmo/eeprom.c2
-rw-r--r--src/osmo-bts-sysmo/sysmobts_vty.c4
2 files changed, 5 insertions, 1 deletions
diff --git a/src/osmo-bts-sysmo/eeprom.c b/src/osmo-bts-sysmo/eeprom.c
index e96d2197..272d41a0 100644
--- a/src/osmo-bts-sysmo/eeprom.c
+++ b/src/osmo-bts-sysmo/eeprom.c
@@ -302,7 +302,7 @@ eeprom_Error_t eeprom_ReadEthAddr( uint8_t *ethaddr )
{
int err;
- err = eeprom_read(0, 6, ethaddr);
+ err = eeprom_read(0, 6, (char *) ethaddr);
if ( err != 6 )
{
return EEPROM_ERR_DEVICE;
diff --git a/src/osmo-bts-sysmo/sysmobts_vty.c b/src/osmo-bts-sysmo/sysmobts_vty.c
index 558dcd97..5bc948e7 100644
--- a/src/osmo-bts-sysmo/sysmobts_vty.c
+++ b/src/osmo-bts-sysmo/sysmobts_vty.c
@@ -46,6 +46,10 @@
#include "femtobts.h"
#include "l1_if.h"
+
+extern int lchan_activate(struct gsm_lchan *lchan, enum gsm_lchan_state lchan_state);
+extern int lchan_deactivate(struct gsm_lchan *lchan);
+
#define TRX_STR "Transceiver related commands\n" "TRX number\n"
#define SHOW_TRX_STR \