include: Add missing vendor parameter to lte atom

This commit is contained in:
Denis Kenzior 2018-03-12 09:36:34 -05:00
parent 8766cedac6
commit 0cbddaf98b
1 changed files with 2 additions and 1 deletions

View File

@ -38,7 +38,7 @@ typedef void (*ofono_lte_cb_t)(const struct ofono_error *error, void *data);
struct ofono_lte_driver {
const char *name;
int (*probe)(struct ofono_lte *lte, void *data);
int (*probe)(struct ofono_lte *lte, unsigned int vendor, void *data);
void (*remove)(struct ofono_lte *lte);
void (*set_default_attach_info)(const struct ofono_lte *lte,
const struct ofono_lte_default_attach_info *info,
@ -50,6 +50,7 @@ int ofono_lte_driver_register(const struct ofono_lte_driver *d);
void ofono_lte_driver_unregister(const struct ofono_lte_driver *d);
struct ofono_lte *ofono_lte_create(struct ofono_modem *modem,
unsigned int vendor,
const char *driver, void *data);
void ofono_lte_register(struct ofono_lte *lte);