summaryrefslogtreecommitdiffstats
path: root/drivers/atmodem/call-settings.c
AgeCommit message (Collapse)AuthorFilesLines
2012-12-04atmodem: remove pending idle callbacks at removalMingli Wu1-0/+1
If device probe and removal happen in short succession, it's possible that the idle handler registered in the probe function doesn't run before the device is removed. In this case, the idle handler needs to be unregistered so that it does not run and try to access the data that's destroyed during the removal.
2011-10-10drivers: Update copyright informationMarcel Holtmann1-1/+1
2011-01-29atmodem: remove NULL checkJeevaka Badrappan1-36/+0
2011-01-18atmodem: add cdip to call-settingsLucas De Marchi1-0/+26
2011-01-13atmodem: fix +COLR parsingRĂ©mi Denis-Courmont1-1/+28
AT+COLR does not have a local presentation mode and thus it cannot be factored with the other commands. This partially reverts commit f2baa88d7577649358f1f8587e5a9b6aa730ca41.
2011-01-12atmodem: M15 coding style fixJeevaka Badrappan1-2/+2
2010-12-16atmodem: Unify COLR/CNAP/CLIP/COLP parserDenis Kenzior1-93/+22
2010-12-16atmodem: Fix parsing of CNAP statusDenis Kenzior1-2/+3
2010-12-16atmodem: add CNAP to call-settingsGustavo F. Padovan1-0/+53
2010-12-10atmodem: cleanup DBG messagesGustavo F. Padovan1-4/+4
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-11-22call-settings: Add support for +COLR in atmodemDenis Kenzior1-1/+53
2010-08-16atmodem: Remove useless NULL checks before g_freeMarcel Holtmann1-12/+6
2010-08-12atmodem: Use g_at_chat_cloneDenis Kenzior1-1/+5
2010-02-08Refactor: Remove atutil dump_responseDenis Kenzior1-6/+0
No longer needed now that we have nice AT command tracing using OFONO_AT_DEBUG=1
2010-02-08Fix: Don't use ofono_debug directly in pluginsDenis Kenzior1-5/+4
2010-02-05Fix: Use snprintf instead of sprintf in atmodemDenis Kenzior1-4/+4
2010-01-01Update copyright informationMarcel Holtmann1-1/+1
2009-09-11Rework DECLARE_FAILURE to be a bit nicerDenis Kenzior1-33/+9
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-2/+2
2009-09-01Add vendor flag to call-settingsDenis Kenzior1-1/+5
2009-08-19Remove modem member from cb_dataDenis Kenzior1-6/+6
2009-08-14Update at call settings driver to new APIDenis Kenzior1-42/+66
2009-07-29Rename ofono_modem_userdataDenis Kenzior1-6/+7
2009-05-28Squash CallWaiting onto CallSettings interfaceDenis Kenzior1-1/+106
The CallWaiting interface had one settable attribute after the latest set of refactoring. Squash it onto the CallSettings interface where it belonged in the first place
2009-05-10Add initial implementation of AT modem driverDenis Kenzior1-0/+271