Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-02-05 | Fix: Use snprintf instead of sprintf in the core | Denis Kenzior | 3 | -12/+15 | |
2010-02-04 | Add radio settings atom and driver API | Aki Niemi | 2 | -0/+378 | |
This interface exposes a read-write property for radio access technology selection mode. | |||||
2010-02-04 | Fix: Unnecessary initializations | Denis Kenzior | 1 | -2/+2 | |
2010-02-04 | Fix: missing break statement | Denis Kenzior | 1 | -0/+2 | |
2010-02-03 | Fix: Wrong variables use | Denis Kenzior | 1 | -2/+2 | |
Copy/paste error from above resulted in incorrect variables being used for comparison. | |||||
2010-02-03 | Fix: Check for \r in UCS2 alphabets | Denis Kenzior | 1 | -1/+1 | |
2010-01-28 | Fix some leftover oudated copyrights | Marcel Holtmann | 1 | -1/+1 | |
2010-01-26 | Remove empty block for SIGPIPE handling | Marcel Holtmann | 1 | -3/+0 | |
2010-01-26 | Add support for dynamic debug feature | Marcel Holtmann | 3 | -26/+49 | |
2010-01-20 | Fix: Process CBS settings even if no EFcbmid | Denis Kenzior | 1 | -3/+4 | |
If EFcbmid is not present, corrupt or empty the code that bootstraps the CBS settings is never called. | |||||
2010-01-20 | Fix: Print errors for unlikely CBS failures | Denis Kenzior | 1 | -2/+5 | |
These indicate driver / hardware issues rather than anything else. | |||||
2010-01-20 | Fix: NULL check both set_topics and clear_topics | Denis Kenzior | 1 | -1/+1 | |
2010-01-20 | Fix: Make the powered setting actually work | Denis Kenzior | 1 | -2/+2 | |
2010-01-20 | Fix: Default to powered=true for CBS | Denis Kenzior | 1 | -0/+7 | |
2010-01-16 | Add command line option for printing version number | Marcel Holtmann | 1 | -3/+11 | |
2010-01-13 | Fix: Don't try to unregister a null mcc/mnc | Denis Kenzior | 1 | -1/+7 | |
Network operators with null MCC & MNC are not registered, but we try to unregister them. Don't do this as it causes a crash. | |||||
2010-01-12 | Make setting CPHS MWIS actually work | Denis Kenzior | 1 | -2/+7 | |
2010-01-12 | Persist CBS Topics list, handle EF-CBMI, EF-CBMIR. | Andrzej Zaborowski | 1 | -24/+75 | |
The two SIM files are only used to bootstrap the topics list value if there's no previous value. | |||||
2010-01-12 | Style: Trailing whitespace & extra lines | Denis Kenzior | 2 | -3/+3 | |
2010-01-12 | Fix: Make the CPHS MWIS version actually work | Denis Kenzior | 1 | -33/+20 | |
2010-01-12 | Refactor: Move copy-pasted code into a function | Denis Kenzior | 1 | -25/+33 | |
2010-01-12 | Fix: Refactor error conditions | Denis Kenzior | 1 | -11/+26 | |
2010-01-12 | Reorder CPHS initializatin order | Denis Kenzior | 1 | -114/+119 | |
Two issues - CPHS MWIS file must always be read, the specification isn't clear whether it depends on the Mailbox service to be available - CPHS MBDN file must be read after we read EFmbdn, otherwise it will not be processed properly | |||||
2010-01-12 | Fix: Create a dedicated callback for syncs | Denis Kenzior | 1 | -4/+16 | |
When synchronizing CPHS MBDN, create a separate callback that doesn't try to emit signals, etc since the main work has already been done when EFmbdn was set successfully. | |||||
2010-01-12 | Remove #if 0 | Denis Kenzior | 1 | -2/+0 | |
2010-01-12 | Fix: Don't recurse infinitely | Denis Kenzior | 1 | -7/+12 | |
We try to keep the CPHS MBDN elementary file in sync with EFmbdn, unfortunately we share the same callback, which leads to infinite recursive writes. Also cleanup the set_mbdn_request structure if the write fails. | |||||
2010-01-12 | Refactor: Rename & Restructure cphs_support | Denis Kenzior | 2 | -9/+15 | |
- Rename to cphs_service_table to be more inline with the specification. - Since the spec allows arbitrary length service tables, use an unsigned char * return instead of a short. - Use bit_field function instead of defining an enum | |||||
2010-01-12 | Rename: Rename CPHS Phase enums | Denis Kenzior | 1 | -4/+3 | |
Be more consistent with the 3GPP Phase names | |||||
2010-01-12 | If EF-MWIS is not available use the CPHS version. | Andrzej Zaborowski | 2 | -3/+79 | |
2010-01-12 | Use CPHS version of mailbox numbers on SIM if 3GPP version not available. | Andrzej Zaborowski | 2 | -14/+117 | |
Otherwise just try to keep the CPHS version of the files in sync. | |||||
2010-01-12 | Retrieve CPHS phase (if any) from SIM. | Andrzej Zaborowski | 2 | -1/+47 | |
2010-01-11 | Remove trailing/leading whitespace | Aki Niemi | 1 | -2/+2 | |
2010-01-07 | Make primary context ids persistent | Denis Kenzior | 1 | -0/+11 | |
2010-01-07 | Fix: Be paranoid and check that last is in range | Denis Kenzior | 1 | -0/+3 | |
2010-01-07 | Add idmap_take utility | Denis Kenzior | 2 | -1/+14 | |
2010-01-07 | Use idmap to allocate primary context ids | Denis Kenzior | 1 | -7/+22 | |
2010-01-07 | Change the semantics to return id > max on failure | Denis Kenzior | 1 | -1/+1 | |
2010-01-07 | Fix: Fail if no driver or id range set | Denis Kenzior | 1 | -4/+5 | |
2010-01-07 | Use the new from_range idmap constructor | Denis Kenzior | 1 | -22/+5 | |
2010-01-07 | Add idmap_from_range constructor | Denis Kenzior | 2 | -11/+37 | |
2010-01-07 | Refactor: Use idmap to allocate CIDs | Denis Kenzior | 1 | -29/+18 | |
2010-01-07 | Add initial implementation of idmap utilities | Denis Kenzior | 2 | -0/+192 | |
2010-01-06 | Refactor: Allow persisent modem names | Denis Kenzior | 1 | -4/+11 | |
2010-01-06 | Set phase to unknown until we probe it | Denis Kenzior | 1 | -0/+1 | |
2010-01-06 | Refactor: Preserve Phase obtained from the SIM | Denis Kenzior | 1 | -4/+2 | |
2010-01-06 | Index SIM cache by phase also. | Andrzej Zaborowski | 2 | -8/+47 | |
2010-01-01 | Update copyright information | Marcel Holtmann | 33 | -33/+33 | |
2009-12-24 | Use error label instead of err or err_out | Marcel Holtmann | 3 | -23/+23 | |
2009-12-17 | Style: Fix a few more occurences of if/else | Denis Kenzior | 12 | -16/+33 | |
See Linux coding style document for details | |||||
2009-12-17 | Style: Flip the if statement | Denis Kenzior | 1 | -3/+3 | |
The if case should have the multiple expressions |