diff options
author | Dawei Li <set_pte_at@outlook.com> | 2022-12-13 23:46:52 +0800 |
---|---|---|
committer | Juergen Gross <jgross@suse.com> | 2022-12-15 16:06:10 +0100 |
commit | 7cffcade57a429667447c4f41d8414bbcf1b3aaa (patch) | |
tree | 003e2434311f399f97e152b626010447c1d02853 /drivers/tty | |
parent | 8b997b2bb2c53b76a6db6c195930e9ab8e4b0c79 (diff) | |
download | linux-7cffcade57a429667447c4f41d8414bbcf1b3aaa.tar.gz linux-7cffcade57a429667447c4f41d8414bbcf1b3aaa.tar.bz2 linux-7cffcade57a429667447c4f41d8414bbcf1b3aaa.zip |
xen: make remove callback of xen driver void returned
Since commit fc7a6209d571 ("bus: Make remove callback return void")
forces bus_type::remove be void-returned, it doesn't make much sense for
any bus based driver implementing remove callbalk to return non-void to
its caller.
This change is for xen bus based drivers.
Acked-by: Juergen Gross <jgross@suse.com>
Signed-off-by: Dawei Li <set_pte_at@outlook.com>
Link: https://lore.kernel.org/r/TYCP286MB23238119AB4DF190997075C9CAE39@TYCP286MB2323.JPNP286.PROD.OUTLOOK.COM
Signed-off-by: Juergen Gross <jgross@suse.com>
Diffstat (limited to 'drivers/tty')
-rw-r--r-- | drivers/tty/hvc/hvc_xen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/tty/hvc/hvc_xen.c b/drivers/tty/hvc/hvc_xen.c index 7c23112dc923..c879f922c716 100644 --- a/drivers/tty/hvc/hvc_xen.c +++ b/drivers/tty/hvc/hvc_xen.c @@ -394,9 +394,9 @@ static int xen_console_remove(struct xencons_info *info) return 0; } -static int xencons_remove(struct xenbus_device *dev) +static void xencons_remove(struct xenbus_device *dev) { - return xen_console_remove(dev_get_drvdata(&dev->dev)); + xen_console_remove(dev_get_drvdata(&dev->dev)); } static int xencons_connect_backend(struct xenbus_device *dev, |