We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71b2a95 commit e8c8764Copy full SHA for e8c8764
bus/bus.c
@@ -56,7 +56,11 @@ static struct device_type gip_client_type = {
56
.release = gip_client_release,
57
};
58
59
+#if LINUX_VERSION_CODE < KERNEL_VERSION(6, 11, 0)
60
static int gip_bus_match(struct device *dev, struct device_driver *driver)
61
+#else
62
+static int gip_bus_match(struct device *dev, const struct device_driver *driver)
63
+#endif
64
{
65
struct gip_client *client;
66
struct gip_driver *drv;
0 commit comments