summaryrefslogtreecommitdiff
path: root/drivers/mbmmodem
Commit message (Collapse)AuthorAgeFilesLines
* mbmmodem: Fix GCC warningDenis Kenzior2022-09-081-3/+3
| | | | | | | | CC drivers/mbmmodem/gprs-context.o drivers/mbmmodem/gprs-context.c: In function ‘mbm_e2ipcfg_cb’: drivers/mbmmodem/gprs-context.c:138:25: error: ‘%s’ directive argument is null [-Werror=format-overflow=] 138 | ofono_info("IP: %s Gateway: %s", ip, gateway); | ^~
* treewide: Introduce support for missing g_memdup2Marcel Holtmann2021-05-051-0/+1
|
* treewide: Replace g_memdup with g_memdup2Marcel Holtmann2021-04-281-1/+1
|
* mbmmodem: Remove unneeded ifDenis Kenzior2019-04-291-7/+2
|
* treewide: Remove superfluous use of _GNU_SOURCEJonas Bonn2018-10-173-3/+0
| | | | | | There are a large number of files in the tree that define _GNU_SOURCE despite not actually using features hidden behind this flag. This patch removes all these definitions in one fell swoop...
* drivers: constify vtablesJonas Bonn2018-10-173-3/+3
| | | | | | | | The driver vtables are read-only structures. This patch declares them as 'const' allowing the compiler to (optionally) put them in the RELRO section. RELRO pages may be marked as read-only by the linker after the relocations have been done ensuring that they aren't inadvertently or maliciously altered at runtime.
* drivers: Update copyright informationMarcel Holtmann2011-10-105-6/+6
|
* mbmmodem: Set baud rate to 115200 for GPS interfaceMarcel Holtmann2011-07-291-1/+11
|
* mbmmodem: Fix not setting IPv4 GatewayDenis Kenzior2011-06-121-0/+1
|
* mbmmodem: update to new gprs context interfaceMika Liljeberg2011-03-151-25/+36
|
* mbmmodem: do not check for NULL pointerLucas De Marchi2011-03-041-4/+0
| | | | | cb_data_new() uses g_new0(), hence there's no need to check the return value being NULL.
* mbmmodem: don't let chat open after fd is sentLucas De Marchi2011-03-031-17/+15
| | | | | Instead of using a GAtChat, just use a GIOChannel and close it as soon as its fd is sent to core.
* mbmmodem: add location-reporting driverRafael Ignacio Zurita2011-02-233-0/+252
|
* mbmmodem: remove NULL checkJeevaka Badrappan2011-01-292-9/+2
|
* mbmmodem: M15 coding style fixJeevaka Badrappan2011-01-123-8/+8
|
* drivers: explicitly compare pointers to NULLLucas De Marchi2010-11-292-6/+6
| | | | | | | | | | | | | | 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>
* mbmmodem: Notify core about handled commandsDenis Kenzior2010-10-271-4/+18
|
* mbmmodem: Print IP details after GPRS context setupMarcel Holtmann2010-10-271-0/+3
|
* mbmmodem: Remove some pointless debug prefix stringsMarcel Holtmann2010-10-271-3/+3
|
* mbmmodem: Add some more GPRS context debug statementsMarcel Holtmann2010-10-271-1/+29
|
* mbmmodem: Check IP address with AT+CGPADDR for older modemsMarcel Holtmann2010-10-241-0/+4
|
* mbmmodem: Add comment about optional response data backMarcel Holtmann2010-09-261-0/+1
|
* mbm: Make stk envelope submission work againDenis Kenzior2010-09-261-10/+4
|
* mbmmodem: Add debug for envelope response dataMarcel Holtmann2010-09-241-3/+7
|
* mbmmodem: Fix small typoMarcel Holtmann2010-09-241-1/+1
|
* mbmmodem: Cleanup of SIM Toolkit supportMarcel Holtmann2010-09-241-21/+19
|
* mbmmodem: Enable PDP context setup debug notificationsMarcel Holtmann2010-08-201-0/+3
|
* mbm: Fix naming of MBM driver for GPRS context handlingMarcel Holtmann2010-08-201-1/+1
|
* mbmmodem: Remove useless NULL checks before g_freeMarcel Holtmann2010-08-161-6/+3
|
* mbmmodem: Use g_at_chat_cloneDenis Kenzior2010-08-122-4/+8
|
* Add extra debug statements to MBM STK atom driverMarcel Holtmann2010-08-111-0/+24
|
* mbmmodem: End session on *STKEND.Andrzej Zaborowski2010-07-081-0/+3
|
* mbmmodem: Allow no response data for envelope.Andrzej Zaborowski2010-06-181-7/+5
| | | | | Partially reverts http://git.kernel.org/?p=network/ofono/ofono.git;a=commitdiff;h=f98c6dc91702c0d14c0afa2a4e32102d3105568d
* Use PROFILE DOWNLOAD to detect SIM Toolkit support for MBMMarcel Holtmann2010-06-161-12/+8
|
* mbm: Simplify STKR callback logicDenis Kenzior2010-05-121-5/+1
|
* mbm: Simplify STKE logicDenis Kenzior2010-05-121-6/+11
| | | | | | We shouldn't use CALLBACK_WITH_FAILURE unless we can't parse the response from the modem. This most likely indicates an integration error.
* mbm: NULL check on a g_free is not necessaryDenis Kenzior2010-05-121-10/+4
| | | | This is a change from previously accepted practice
* mbm: Few style issues with indentationDenis Kenzior2010-05-121-7/+6
|
* mbm: Add STK driver.Andrzej Zaborowski2010-05-123-0/+259
|
* Refactor: Remove atutil dump_responseDenis Kenzior2010-02-081-2/+0
| | | | | No longer needed now that we have nice AT command tracing using OFONO_AT_DEBUG=1
* Fix: Don't use ofono_debug directly in pluginsDenis Kenzior2010-02-081-3/+3
|
* Fix: Send *EIAAUW after CGDCONT for STE and MBMDenis Kenzior2010-02-051-9/+15
| | | | Otherwise the EIAAUW might fail.
* Fix: Use snprintf instead of sprintf in mbmmodemDenis Kenzior2010-02-051-4/+4
|
* Style: Trailing whitespace & extra linesDenis Kenzior2010-01-121-4/+4
|
* Update copyright informationMarcel Holtmann2010-01-013-3/+3
|
* Style: Repeat for driversDenis Kenzior2009-12-171-1/+2
|
* Fix: Set netmask for static ip on mbmMartin Xu2009-12-161-2/+5
|
* Fix: Make sure to never overflow DNS variableDenis Kenzior2009-12-011-2/+5
|
* Fix: Poll ENAP on older mbm hardwareDenis Kenzior2009-12-011-125/+186
|
* Style: Fix whitespaceDenis Kenzior2009-12-011-1/+1
|