HID: intel-ish-hid: Make remove callback return void
authorUwe Kleine-König <uwe@kleine-koenig.org>
Sat, 6 Feb 2021 15:13:48 +0000 (16:13 +0100)
committerJiri Kosina <jkosina@suse.cz>
Mon, 8 Mar 2021 16:16:03 +0000 (17:16 +0100)
The driver core ignores the return value of struct bus_type::remove()
because there is only little that can be done. To simplify the quest to
make this function return void, let struct ishtp_cl_driver::remove() return
void, too. All users already unconditionally return 0, this commit makes
it obvious that returning an error value is a bad idea.

Signed-off-by: Uwe Kleine-König <uwe@kleine-koenig.org>
Acked-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
drivers/hid/intel-ish-hid/ishtp-fw-loader.c
drivers/hid/intel-ish-hid/ishtp-hid-client.c
drivers/hid/intel-ish-hid/ishtp/bus.c
drivers/platform/chrome/cros_ec_ishtp.c
include/linux/intel-ish-client-if.h

index 6cf59fd..edb0bd0 100644 (file)
@@ -1015,7 +1015,7 @@ static int loader_ishtp_cl_probe(struct ishtp_cl_device *cl_device)
  *
  * Return: 0
  */
-static int loader_ishtp_cl_remove(struct ishtp_cl_device *cl_device)
+static void loader_ishtp_cl_remove(struct ishtp_cl_device *cl_device)
 {
        struct ishtp_cl_data *client_data;
        struct ishtp_cl *loader_ishtp_cl = ishtp_get_drvdata(cl_device);
@@ -1032,8 +1032,6 @@ static int loader_ishtp_cl_remove(struct ishtp_cl_device *cl_device)
        cancel_work_sync(&client_data->work_ishtp_reset);
        loader_deinit(loader_ishtp_cl);
        ishtp_put_device(cl_device);
-
-       return 0;
 }
 
 /**
index 6ba944b..0f1b528 100644 (file)
@@ -838,7 +838,7 @@ static int hid_ishtp_cl_probe(struct ishtp_cl_device *cl_device)
  *
  * Return: 0
  */
-static int hid_ishtp_cl_remove(struct ishtp_cl_device *cl_device)
+static void hid_ishtp_cl_remove(struct ishtp_cl_device *cl_device)
 {
        struct ishtp_cl *hid_ishtp_cl = ishtp_get_drvdata(cl_device);
        struct ishtp_cl_data *client_data = ishtp_get_client_data(hid_ishtp_cl);
@@ -856,8 +856,6 @@ static int hid_ishtp_cl_remove(struct ishtp_cl_device *cl_device)
        hid_ishtp_cl = NULL;
 
        client_data->num_hid_devices = 0;
-
-       return 0;
 }
 
 /**
index 7f36ce6..ffc9ce5 100644 (file)
@@ -258,7 +258,6 @@ static int ishtp_cl_device_remove(struct device *dev)
 {
        struct ishtp_cl_device *device = to_ishtp_cl_device(dev);
        struct ishtp_cl_driver *driver = to_ishtp_cl_driver(dev->driver);
-       int ret = 0;
 
        if (device->event_cb) {
                device->event_cb = NULL;
@@ -266,9 +265,9 @@ static int ishtp_cl_device_remove(struct device *dev)
        }
 
        if (driver->remove)
-               ret = driver->remove(device);
+               driver->remove(device);
 
-       return ret;
+       return 0;
 }
 
 /**
index f001070..9d1e7e0 100644 (file)
@@ -703,7 +703,7 @@ end_ishtp_cl_alloc_error:
  *
  * Return: 0
  */
-static int cros_ec_ishtp_remove(struct ishtp_cl_device *cl_device)
+static void cros_ec_ishtp_remove(struct ishtp_cl_device *cl_device)
 {
        struct ishtp_cl *cros_ish_cl = ishtp_get_drvdata(cl_device);
        struct ishtp_cl_data *client_data = ishtp_get_client_data(cros_ish_cl);
@@ -712,8 +712,6 @@ static int cros_ec_ishtp_remove(struct ishtp_cl_device *cl_device)
        cancel_work_sync(&client_data->work_ec_evt);
        cros_ish_deinit(cros_ish_cl);
        ishtp_put_device(cl_device);
-
-       return 0;
 }
 
 /**
index 0d6b4bc..94669e2 100644 (file)
@@ -36,7 +36,7 @@ struct ishtp_cl_driver {
        const char *name;
        const guid_t *guid;
        int (*probe)(struct ishtp_cl_device *dev);
-       int (*remove)(struct ishtp_cl_device *dev);
+       void (*remove)(struct ishtp_cl_device *dev);
        int (*reset)(struct ishtp_cl_device *dev);
        const struct dev_pm_ops *pm;
 };