diff options
author | laforge <laforge@99fdad57-331a-0410-800a-d7fa5415bdb3> | 2007-06-02 11:00:07 +0000 |
---|---|---|
committer | laforge <laforge@99fdad57-331a-0410-800a-d7fa5415bdb3> | 2007-06-02 11:00:07 +0000 |
commit | 1c1d1d68d245ee7ac99d7a553a692c6c3983766e (patch) | |
tree | c3e7694da4bd90df2f2209d9dfea27feb766454d /include/gsmd | |
parent | 25d5ef89ffc6dfa3eae3af33c335aa6bfec795a4 (diff) |
add machine / vendor plugin infrastructure (Philip Zabel)
git-svn-id: http://svn.openmoko.org/trunk/src/target/gsm@2123 99fdad57-331a-0410-800a-d7fa5415bdb3
Diffstat (limited to 'include/gsmd')
-rw-r--r-- | include/gsmd/gsmd.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/gsmd/gsmd.h b/include/gsmd/gsmd.h index 044f65d..65ca568 100644 --- a/include/gsmd/gsmd.h +++ b/include/gsmd/gsmd.h @@ -7,6 +7,7 @@ #include <common/linux_list.h> +#include <gsmd/machineplugin.h> #include <gsmd/vendorplugin.h> #include <gsmd/select.h> #include <gsmd/state.h> @@ -58,12 +59,14 @@ struct gsmd; struct gsmd { unsigned int flags; + int interpreter_ready; struct gsmd_fd gfd_uart; struct gsmd_fd gfd_sock; struct llparser llp; struct llist_head users; struct llist_head pending_atcmds; /* our busy gsmd_atcmds */ struct llist_head busy_atcmds; /* our busy gsmd_atcmds */ + struct gsmd_machine_plugin *machinepl; struct gsmd_vendor_plugin *vendorpl; struct gsmd_device_state dev_state; |