On Tue, Nov 30, 2010 at 4:25 PM, Lucas De Marchi <[email protected]> wrote: > diff --git a/drivers/huaweimodem/radio-settings.c > b/drivers/huaweimodem/radio-settings.c > new file mode 100644 > index 0000000..7f0b223 > --- /dev/null > +++ b/drivers/huaweimodem/radio-settings.c > @@ -0,0 +1,212 @@ > +/* > + * > + * oFono - Open Source Telephony > + * > + * Copyright (C) 2010 Intel Corporation. All rights reserved. > + * > + * This program is free software; you can redistribute it and/or modify > + * it under the terms of the GNU General Public License version 2 as > + * published by the Free Software Foundation. > + * > + * This program is distributed in the hope that it will be useful, > + * but WITHOUT ANY WARRANTY; without even the implied warranty of > + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > + * GNU General Public License for more details. > + * > + * You should have received a copy of the GNU General Public License > + * along with this program; if not, write to the Free Software > + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 > USA > + * > + */ > + > +#ifdef HAVE_CONFIG_H > +#include <config.h> > +#endif > + > +#define _GNU_SOURCE > +#include <string.h> > +#include <stdlib.h> > +#include <stdio.h> > +#include <errno.h> > + > +#include <glib.h> > + > +#include <ofono/log.h> > +#include <ofono/modem.h> > +#include <ofono/radio-settings.h> > + > +#include "gatchat.h" > +#include "gatresult.h" > + > +#include "huaweimodem.h" > + > +static const char *none_prefix[] = { NULL }; > +static const char *xrat_prefix[] = { "^SYSCFG:", NULL }; > + > +struct radio_settings_data { > + GAtChat *chat; > +};
I left chat inside a radio_settings_data struct because I plan to extend it in a follow up patch, when this one is accepted and I finish my tests with Frequency Band Selection. Marcel, sorry... I've made a "git commit -c" in one commit of yours (to re-use the commit message), so this actually came with your name. I'll send again this patch regards, Lucas De Marchi _______________________________________________ ofono mailing list [email protected] http://lists.ofono.org/listinfo/ofono
