summaryrefslogtreecommitdiffstats
path: root/drivers/atmodem/call-meter.c
AgeCommit message (Collapse)AuthorFilesLines
2011-01-29atmodem: remove NULL checkJeevaka Badrappan1-28/+0
2011-01-12atmodem: M15 coding style fixJeevaka Badrappan1-2/+2
2010-11-29drivers: explicitly compare pointers to NULLLucas De Marchi1-7/+7
This patch was generated by the following semantic patch (http://coccinelle.lip6.fr/) // <smpl> @fix disable is_null,isnt_null1@ expression *E; @@ - !E + E == NULL // </smpl>
2010-08-16atmodem: Remove useless NULL checks before g_freeMarcel Holtmann1-14/+7
2010-08-12atmodem: Use g_at_chat_cloneDenis Kenzior1-0/+5
2010-06-17Fix: potential to crash in atmodemDenis Kenzior1-14/+20
Some callbacks in call-meter were assuming that a modem follows 27.007 and actually returns a string. Some modems don't return a string that is properly formatted (e.g. in quotes). The strtol was thus accessing uninitialized memory and crashing ofono.
2010-06-07atmodem: Fix CPUC parserDenis Kenzior1-6/+12
Apparently some modems are extra stupid: AT+CPUC?\r \r\n+CPUC: \r\nOK\r\n So if we fail to parse the response, return an error
2010-02-08Refactor: Remove atutil dump_responseDenis Kenzior1-7/+0
No longer needed now that we have nice AT command tracing using OFONO_AT_DEBUG=1
2010-02-05Fix: Use snprintf instead of sprintf in atmodemDenis Kenzior1-1/+1
2010-01-01Update copyright informationMarcel Holtmann1-1/+1
2009-09-11Rework DECLARE_FAILURE to be a bit nicerDenis Kenzior1-37/+10
2009-09-04Rename at.h to atmodem.hDenis Kenzior1-1/+1
2009-09-01Rename generic_at drivers to atmodemDenis Kenzior1-1/+1
Be more consistent with directory naming
2009-09-01Make remove functions not return anythingDenis Kenzior1-2/+1
2009-09-01change int vendor to unsigned int vendorDenis Kenzior1-1/+2
2009-09-01Add vendor parameter to call-meterDenis Kenzior1-2/+4
2009-08-19Remove modem member from cb_dataDenis Kenzior1-7/+7
2009-08-14Update the at call meter driver for new APIDenis Kenzior1-68/+85
2009-07-29Rename ofono_modem_userdataDenis Kenzior1-9/+10
2009-05-10Add initial implementation of AT modem driverDenis Kenzior1-0/+387