summaryrefslogtreecommitdiffstats
path: root/drivers/atmodem/call-forwarding.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-8/+0
2011-01-12atmodem: M15 coding style fixJeevaka Badrappan1-2/+2
2010-11-29drivers: explicitly compare pointers to NULLLucas De Marchi1-2/+2
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-4/+2
2010-08-12atmodem: Use g_at_chat_cloneDenis Kenzior1-1/+5
2010-02-08Refactor: Remove atutil dump_responseDenis Kenzior1-2/+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-4/+4
2010-02-05Fix: Use snprintf instead of sprintf in atmodemDenis Kenzior1-10/+10
2010-01-01Update copyright informationMarcel Holtmann1-1/+1
2009-09-11Rework DECLARE_FAILURE to be a bit nicerDenis Kenzior1-8/+2
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/+1
2009-09-01Add vendor flag to call-forwardingDenis Kenzior1-1/+5
2009-08-19Remove modem member from cb_dataDenis Kenzior1-2/+2
2009-08-14Update at modem call forwarding driverDenis Kenzior1-31/+61
2009-07-29Rename ofono_modem_userdataDenis Kenzior1-2/+3
2009-05-26Create ofono_phone_number structDenis Kenzior1-10/+13
Creates a new structure in driver.h called ofono_phone_number. This is meant to replace const char *number, int number_type arguments everywhere. Fix up all existing code to use this structure instead.
2009-05-21Make the Call Forwarding atmodem driver workDenis Kenzior1-4/+19
2009-05-10Add initial implementation of AT modem driverDenis Kenzior1-0/+247