diff options
author | Denis Kenzior <denkenz@gmail.com> | 2009-09-01 22:27:08 -0500 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2009-09-01 22:27:08 -0500 |
commit | 9caa606bcc350389d31ac51b7728729aa52603ed (patch) | |
tree | 9e3d9413d83b0f24c9b78e1ee84550dbe72cfc67 /include/devinfo.h | |
parent | 422df0edfb321b0905ca85b02b31cb9c824a6d9d (diff) |
Make remove functions not return anything
Diffstat (limited to 'include/devinfo.h')
-rw-r--r-- | include/devinfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/devinfo.h b/include/devinfo.h index 7aa0f111..29f0c65f 100644 --- a/include/devinfo.h +++ b/include/devinfo.h @@ -37,7 +37,7 @@ struct ofono_devinfo_driver { const char *name; int (*probe)(struct ofono_devinfo *info, unsigned int vendor, void *data); - int (*remove)(struct ofono_devinfo *info); + void (*remove)(struct ofono_devinfo *info); void (*query_manufacturer)(struct ofono_devinfo *info, ofono_devinfo_query_cb_t cb, void *data); void (*query_serial)(struct ofono_devinfo *info, |