mirror of
https://github.com/wessel-novacustom/clevo-keyboard.git
synced 2024-11-15 03:34:01 +01:00
fix incompatible pointer type for linux 5.13
this fixes the following build issue: ``` src/clevo_wmi.c:149:19: error: initialization of ‘void (*)(struct wmi_device *)’ from incompatible pointer type ‘int (*)(struct wmi_device *)’ [-Werror=incompatible-pointer-types] 149 | .remove = clevo_wmi_remove, | ^~~~~~~~~~~~~~~~ ``` Signed-off-by: BlackEagle <ike.devolder@gmail.com>
This commit is contained in:
parent
d7f358a778
commit
216899e1cf
|
@ -118,10 +118,16 @@ static int clevo_wmi_probe(struct wmi_device *wdev, const void *dummy_context)
|
|||
return 0;
|
||||
}
|
||||
|
||||
#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 13, 0)
|
||||
static int clevo_wmi_remove(struct wmi_device *wdev)
|
||||
#else
|
||||
static void clevo_wmi_remove(struct wmi_device *wdev)
|
||||
#endif
|
||||
{
|
||||
pr_debug("clevo_wmi driver remove\n");
|
||||
#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 13, 0)
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
|
||||
static void clevo_wmi_notify(struct wmi_device *wdev, union acpi_object *dummy)
|
||||
|
|
Loading…
Reference in a new issue