summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2010-12-07smsutil: Minor style fixDenis Kenzior1-1/+2
2010-12-07build: Silence another make messageMarcel Holtmann1-0/+2
2010-12-07Mark ofono/*.h symbolink links as built sourcesRémi Denis-Courmont1-3/+3
This forces automake/make to build them first if needed (as before). But it avoids marking every single header as a dependency of every single object. Thus we do not need a bogus full rebuild of the tree everytime a header is added.
2010-12-03voicecall: fix dial result handlingPekka Pessi1-3/+16
The existing call will be automatically put on hold if there is an existing active call when dialing. On some modems the dial request returns only after the dialed call is active and the existing call has been put on hold. However, on isimodem driver the dial request returns immediately before the existing call has changed its status. With isimodem driver the dial_handle_result() selected the existing call from the list when it should have created a new one. The dial result handling now guards againt returning a previously dialed active call as result.
2010-12-03network: Send strength as a byte, not uint16Denis Kenzior1-4/+5
To be consistent with the documentation
2010-12-03AUTHORS: Mention Helen's contributionsDenis Kenzior1-0/+1
2010-12-03ste: Minor style fixesDenis Kenzior1-1/+3
2010-12-03ste: Restructure caif channel creationHelen Clemson1-12/+28
This is restructuring the caif channel creation, so that at a later date multiple AT channels can be supported. This effectively moves the channel creation from ste_enable, into its own function, ste_create_channel.
2010-12-03isi/voicecall: fix handling of waiting callsPekka Pessi1-58/+56
Also, do not retrieve calls after isi_release_all_active() because retrieving is now only an unwanted side-effect .
2010-12-03isi/voicecall: avoid side-effects of releasePekka Pessi1-16/+16
If a call was held automatically when an another call was dialed or answered, it gets retrieved when the other call is released unless auto change features is explicitly disabled. Drop cause_type parameter because it is never used. Use cause code for busy when releasing incoming or waiting calls.
2010-12-03isi/voicecall: add call id to queued requestsPekka Pessi1-32/+57
2010-12-03isi/voicecall: fix status reportingPekka Pessi1-198/+189
Do not report incoming calls to the oFono core until they can be answered. Report MT_RELEASED or MO_RELEASED via ofono_voicecall_notify(), TERMINATED calls via ofono_voicecall_disconnected().
2010-12-03coding-style M14: parenthesis around sizeof argPekka Pessi1-0/+14
2010-12-03test: Unregister agents on keyboard interruptAki Niemi2-2/+12
Control-C now calls UnregisterAgent(), so the agents exit cleanly.
2010-12-03test: Fix script outputAki Niemi1-1/+1
There is no proposing, just action.
2010-12-03TODO: Add owner for IAP database taskAki Niemi1-0/+1
2010-12-02doc: Don't go over 80 characters / lineDenis Kenzior1-1/+2
2010-12-02doc: Move DisconnectReason to the signals sectionDenis Kenzior1-17/+17
2010-12-02atmodem: fix DBG messageGustavo F. Padovan1-3/+3
2010-12-02AUTHORS: Mention Rafael's contributionsDenis Kenzior1-0/+1
2010-12-02HACKING: Add ofono.conf file copy command requiredRafael Ignacio Zurita1-0/+3
Add ofono.conf copy command required for oFono core daemon to work.
2010-12-02HACKING: add guidelines to patch submissionLucas De Marchi1-0/+19
2010-12-02smsutil: Fix issue in mwi dcs decodingJeevaka Badrappan1-1/+6
2010-12-02test: Add support for PlayTone and LoopToneZhigang Li1-0/+10
2010-12-02AUTHORS: Mention Antti's contributionsDenis Kenzior1-0/+1
2010-12-02gprs: Fix for gprs context conversionAntti Paila1-1/+1
2010-12-02smsutil: Fix uninitialized optional elementsDenis Kenzior1-2/+2
sms_decode was never memsetting the returned structure, so if any optional elements were present in the SMS (e.g. status report) then the structure was not completely initialized.
2010-12-02sms: Use the right union member for DCS checkDenis Kenzior1-1/+1
2010-12-01doc: Mark EmergencyNumbers property readonlyDenis Kenzior1-1/+1
2010-11-30stk: Add busy error for the display text commandGuillaume Lucas4-2/+27
According to the sequence 1.2 of the ETSI TS 102 384 a busy screen error should be returns for the display text proactive command when the ME is not able to display the text.
2010-11-29sim: be more paranoid for triggering EFest readJeevaka Badrappan1-3/+10
2010-11-29TODO: minor typoDenis Kenzior1-1/+1
2010-11-29core: explicitly compare pointers to NULLLucas De Marchi26-271/+248
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-29simutil: explicitly compare pointers to NULLLucas De Marchi1-8/+8
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-29simfs: explicitly compare pointers to NULLLucas De Marchi1-14/+14
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-29util: explicitly compare pointers to NULLLucas De Marchi1-11/+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-29stkutil: 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-11-29smsutil: explicitly compare pointers to NULLLucas De Marchi1-22/+17
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-29plugins: explicitly compare pointers to NULLLucas De Marchi19-107/+107
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-29gatchat: explicitly compare pointers to NULLLucas De Marchi16-102/+98
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-29examples: explicitly compare pointers to NULLLucas De Marchi1-1/+1
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-29gisi: explicitly compare pointers to NULLLucas De Marchi4-29/+29
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-29unit: explicitly compare pointers to NULLLucas De Marchi3-4/+4
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-29isi: Get rid of a pointless check in cf driverDenis Kenzior1-1/+1
2010-11-29drivers: explicitly compare pointers to NULLLucas De Marchi58-278/+267
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-29coding-style: add rule about checking NULL pointerLucas De Marchi1-0/+21
2010-11-29TODO: Mark CTM task as doneLucas De Marchi2-11/+7
2010-11-29phonesim: implement ctm atomLucas De Marchi1-4/+146
2010-11-29isi: Update radio-settings to use new APIDenis Kenzior1-1/+1
2010-11-29radio-settings: Update API to use ofono_bool_tDenis Kenzior1-1/+1