summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrzej Zaborowski <andrew.zaborowski@intel.com>2009-06-18 06:04:13 +0200
committerDenis Kenzior <denkenz@gmail.com>2009-06-18 16:57:57 -0500
commit9156607bc9a84711419fe70e64f199316e50e71b (patch)
tree287acab4b873408901059e8569bc35be65fc8364
parent713cbac79abc2fd3501c8217061de21024843f70 (diff)
downloadofono-9156607bc9a84711419fe70e64f199316e50e71b.tar.bz2
Move struct ussd_data definition out of the header.
No fuctional change.
-rw-r--r--src/ussd.c7
-rw-r--r--src/ussd.h7
2 files changed, 7 insertions, 7 deletions
diff --git a/src/ussd.c b/src/ussd.c
index c9796e55..72253982 100644
--- a/src/ussd.c
+++ b/src/ussd.c
@@ -49,6 +49,13 @@ enum ussd_state {
USSD_STATE_USER_ACTION = 2
};
+struct ussd_data {
+ struct ofono_ussd_ops *ops;
+ int state;
+ DBusMessage *pending;
+ int flags;
+};
+
static struct ussd_data *ussd_create()
{
struct ussd_data *r;
diff --git a/src/ussd.h b/src/ussd.h
index bfd707f3..5b956e55 100644
--- a/src/ussd.h
+++ b/src/ussd.h
@@ -19,13 +19,6 @@
*
*/
-struct ussd_data {
- struct ofono_ussd_ops *ops;
- int state;
- DBusMessage *pending;
- int flags;
-};
-
typedef gboolean (*ss_control_cb_t)(struct ofono_modem *modem,
enum ss_control_type type,
const char *sc,