diff options
Diffstat (limited to 'include/ssn.h')
-rw-r--r-- | include/ssn.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/ssn.h b/include/ssn.h index b1e51bfe..c5e428c5 100644 --- a/include/ssn.h +++ b/include/ssn.h @@ -32,7 +32,7 @@ struct ofono_ssn; struct ofono_ssn_driver { const char *name; - int (*probe)(struct ofono_ssn *ssn, int vendor, void *data); + int (*probe)(struct ofono_ssn *ssn, unsigned int vendor, void *data); int (*remove)(struct ofono_ssn *ssn); }; @@ -44,7 +44,8 @@ void ofono_ssn_cssu_notify(struct ofono_ssn *ssn, int code, int index, int ofono_ssn_driver_register(const struct ofono_ssn_driver *d); void ofono_ssn_driver_unregister(const struct ofono_ssn_driver *d); -struct ofono_ssn *ofono_ssn_create(struct ofono_modem *modem, int vendor, +struct ofono_ssn *ofono_ssn_create(struct ofono_modem *modem, + unsigned int vendor, const char *driver, void *data); void ofono_ssn_register(struct ofono_ssn *ssn); |