diff options
author | Denis Kenzior <denkenz@gmail.com> | 2009-08-18 17:06:29 -0500 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2009-08-19 18:35:06 -0500 |
commit | f19d0cba4e560f38d12130152728fbd942c20f6c (patch) | |
tree | 63f1e5d9aa4c209033ac376fc00ebea8e4c86827 | |
parent | f46a36dfd8276cb8ca54049375fc4fa19530391f (diff) | |
download | ofono-f19d0cba4e560f38d12130152728fbd942c20f6c.tar.bz2 |
Remove traces of sim_manager from modem.c
-rw-r--r-- | src/modem.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/modem.c b/src/modem.c index bbb7db17..d41fb082 100644 --- a/src/modem.c +++ b/src/modem.c @@ -33,7 +33,6 @@ #include "driver.h" #include "common.h" -#include "sim.h" #define MODEM_FLAG_INITIALIZING_ATTRS 1 @@ -637,8 +636,6 @@ static struct ofono_modem *modem_create(int id, return NULL; } - ofono_sim_manager_init(modem); - modem->modem_info->flags |= MODEM_FLAG_INITIALIZING_ATTRS; g_timeout_add(0, query_manufacturer, modem); @@ -656,8 +653,6 @@ static void modem_remove(struct ofono_modem *modem) remove_all_atoms(modem); remove_all_watches(modem); - ofono_sim_manager_exit(modem); - g_dbus_unregister_interface(conn, path, OFONO_MODEM_INTERFACE); g_free(path); |