mirror of
https://github.com/wessel-novacustom/clevo-keyboard.git
synced 2024-11-15 03:34:01 +01:00
Merge pull request #95 from BlackIkeEagle/linux-5.13-compat
fix incompatible pointer type for linux 5.13
This commit is contained in:
commit
d1639d1734
|
@ -118,10 +118,16 @@ static int clevo_wmi_probe(struct wmi_device *wdev, const void *dummy_context)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 13, 0)
|
||||||
static int clevo_wmi_remove(struct wmi_device *wdev)
|
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");
|
pr_debug("clevo_wmi driver remove\n");
|
||||||
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 13, 0)
|
||||||
return 0;
|
return 0;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
static void clevo_wmi_notify(struct wmi_device *wdev, union acpi_object *dummy)
|
static void clevo_wmi_notify(struct wmi_device *wdev, union acpi_object *dummy)
|
||||||
|
|
Loading…
Reference in a new issue