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 /plugins | |
parent | 422df0edfb321b0905ca85b02b31cb9c824a6d9d (diff) | |
download | ofono-9caa606bcc350389d31ac51b7728729aa52603ed.tar.bz2 |
Make remove functions not return anything
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/generic_at.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/generic_at.c b/plugins/generic_at.c index d3e4f6a0..3ba39156 100644 --- a/plugins/generic_at.c +++ b/plugins/generic_at.c @@ -416,13 +416,11 @@ static int generic_at_probe(struct ofono_modem *modem) return 0; } -static int generic_at_remove(struct ofono_modem *modem) +static void generic_at_remove(struct ofono_modem *modem) { struct generic_at_data *d = ofono_modem_get_data(modem); generic_at_data_free(d); - - return 0; } static int generic_at_enable(struct ofono_modem *modem) |