From: Marcel Holtmann Date: Fri, 29 Jul 2011 18:50:37 +0000 (+0200) Subject: mbmmodem: Set baud rate to 115200 for GPS interface X-Git-Tag: 1.0~227 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=14806ba5271835271d6fc4c33c2760b5dd0841fe;p=platform%2Fupstream%2Fofono.git mbmmodem: Set baud rate to 115200 for GPS interface --- diff --git a/drivers/mbmmodem/location-reporting.c b/drivers/mbmmodem/location-reporting.c index 1080e62..e167de9 100644 --- a/drivers/mbmmodem/location-reporting.c +++ b/drivers/mbmmodem/location-reporting.c @@ -98,6 +98,7 @@ static int enable_data_stream(struct ofono_location_reporting *lr) { struct ofono_modem *modem; const char *gps_dev; + GHashTable *options; GIOChannel *channel; GIOStatus status; gsize written; @@ -106,7 +107,16 @@ static int enable_data_stream(struct ofono_location_reporting *lr) modem = ofono_location_reporting_get_modem(lr); gps_dev = ofono_modem_get_string(modem, "GPSDevice"); - channel = g_at_tty_open(gps_dev, NULL); + options = g_hash_table_new(g_str_hash, g_str_equal); + if (options == NULL) + return -1; + + g_hash_table_insert(options, "Baud", "115200"); + + channel = g_at_tty_open(gps_dev, options); + + g_hash_table_destroy(options); + if (channel == NULL) return -1;