Fixing build.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.2@284665 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.6.2
Tilghman Lesher 15 years ago
parent 4e046ccf08
commit 270a11e92b

@ -644,7 +644,7 @@ static struct chan_usbradio_pvt usbradio_default = {
/* DECLARE FUNCTION PROTOTYPES */ /* DECLARE FUNCTION PROTOTYPES */
static void store_txtoctype(struct chan_usbradio_pvt *o, char *s); static void store_txtoctype(struct chan_usbradio_pvt *o, const char *s);
static int hidhdwconfig(struct chan_usbradio_pvt *o); static int hidhdwconfig(struct chan_usbradio_pvt *o);
static int set_txctcss_level(struct chan_usbradio_pvt *o); static int set_txctcss_level(struct chan_usbradio_pvt *o);
static void pmrdump(struct chan_usbradio_pvt *o); static void pmrdump(struct chan_usbradio_pvt *o);
@ -1155,16 +1155,16 @@ static void *hidthread(void *arg)
lastrx = 0; lastrx = 0;
// popen // popen
while (!o->stophid) { while (!o->stophid) {
pfd.fd = o->pttkick; pfd.fd = o->pttkick[0];
pfd.revents = 0; pfd.revents = 0;
res = ast_poll2(&pfd, 1, 50); res = ast_poll(&pfd, 1, 50);
if (res < 0) { if (res < 0) {
ast_log(LOG_WARNING, "poll() failed: %s\n", strerror(errno)); ast_log(LOG_WARNING, "poll() failed: %s\n", strerror(errno));
usleep(10000); usleep(10000);
continue; continue;
} }
if (pfd.revents & POLLIN) { { if (pfd.revents & POLLIN) {
char c; char c;
if (read(o->pttkick[0], &c, 1) < 0) { if (read(o->pttkick[0], &c, 1) < 0) {
@ -2679,7 +2679,7 @@ static void store_callerid(struct chan_usbradio_pvt *o, char *s)
} }
#endif #endif
static void store_rxdemod(struct chan_usbradio_pvt *o, char *s) static void store_rxdemod(struct chan_usbradio_pvt *o, const char *s)
{ {
if (!strcasecmp(s,"no")){ if (!strcasecmp(s,"no")){
o->rxdemod = RX_AUDIO_NONE; o->rxdemod = RX_AUDIO_NONE;
@ -2698,7 +2698,7 @@ static void store_rxdemod(struct chan_usbradio_pvt *o, char *s)
} }
static void store_txmixa(struct chan_usbradio_pvt *o, char *s) static void store_txmixa(struct chan_usbradio_pvt *o, const char *s)
{ {
if (!strcasecmp(s,"no")){ if (!strcasecmp(s,"no")){
o->txmixa = TX_OUT_OFF; o->txmixa = TX_OUT_OFF;
@ -2722,7 +2722,7 @@ static void store_txmixa(struct chan_usbradio_pvt *o, char *s)
//ast_log(LOG_WARNING, "set txmixa = %s\n", s); //ast_log(LOG_WARNING, "set txmixa = %s\n", s);
} }
static void store_txmixb(struct chan_usbradio_pvt *o, char *s) static void store_txmixb(struct chan_usbradio_pvt *o, const char *s)
{ {
if (!strcasecmp(s,"no")){ if (!strcasecmp(s,"no")){
o->txmixb = TX_OUT_OFF; o->txmixb = TX_OUT_OFF;
@ -2747,7 +2747,7 @@ static void store_txmixb(struct chan_usbradio_pvt *o, char *s)
} }
/* /*
*/ */
static void store_rxcdtype(struct chan_usbradio_pvt *o, char *s) static void store_rxcdtype(struct chan_usbradio_pvt *o, const char *s)
{ {
if (!strcasecmp(s,"no")){ if (!strcasecmp(s,"no")){
o->rxcdtype = CD_IGNORE; o->rxcdtype = CD_IGNORE;
@ -2772,7 +2772,7 @@ static void store_rxcdtype(struct chan_usbradio_pvt *o, char *s)
} }
/* /*
*/ */
static void store_rxsdtype(struct chan_usbradio_pvt *o, char *s) static void store_rxsdtype(struct chan_usbradio_pvt *o, const char *s)
{ {
if (!strcasecmp(s,"no") || !strcasecmp(s,"SD_IGNORE")){ if (!strcasecmp(s,"no") || !strcasecmp(s,"SD_IGNORE")){
o->rxsdtype = SD_IGNORE; o->rxsdtype = SD_IGNORE;
@ -2794,7 +2794,7 @@ static void store_rxsdtype(struct chan_usbradio_pvt *o, char *s)
} }
/* /*
*/ */
static void store_rxgain(struct chan_usbradio_pvt *o, char *s) static void store_rxgain(struct chan_usbradio_pvt *o, const char *s)
{ {
float f; float f;
sscanf(s, "%30f", &f); sscanf(s, "%30f", &f);
@ -2803,7 +2803,7 @@ static void store_rxgain(struct chan_usbradio_pvt *o, char *s)
} }
/* /*
*/ */
static void store_rxvoiceadj(struct chan_usbradio_pvt *o, char *s) static void store_rxvoiceadj(struct chan_usbradio_pvt *o, const char *s)
{ {
float f; float f;
sscanf(s, "%30f", &f); sscanf(s, "%30f", &f);
@ -2812,7 +2812,7 @@ static void store_rxvoiceadj(struct chan_usbradio_pvt *o, char *s)
} }
/* /*
*/ */
static void store_rxctcssadj(struct chan_usbradio_pvt *o, char *s) static void store_rxctcssadj(struct chan_usbradio_pvt *o, const char *s)
{ {
float f; float f;
sscanf(s, "%30f", &f); sscanf(s, "%30f", &f);
@ -2821,7 +2821,7 @@ static void store_rxctcssadj(struct chan_usbradio_pvt *o, char *s)
} }
/* /*
*/ */
static void store_txtoctype(struct chan_usbradio_pvt *o, char *s) static void store_txtoctype(struct chan_usbradio_pvt *o, const char *s)
{ {
if (!strcasecmp(s,"no") || !strcasecmp(s,"TOC_NONE")){ if (!strcasecmp(s,"no") || !strcasecmp(s,"TOC_NONE")){
o->txtoctype = TOC_NONE; o->txtoctype = TOC_NONE;

Loading…
Cancel
Save