Merge branch 'svn-trunk'

This commit is contained in:
Bart Van Assche
2017-04-14 17:45:34 -07:00
4 changed files with 8 additions and 10 deletions
@@ -1,15 +1,15 @@
#include <linux/module.h>
#include <rdma/ib_verbs.h>
static void client_remove(struct ib_device *dev, void *client_data)
static void remove_one(struct ib_device *device, void *client_data)
{
}
static int modinit(void)
{
struct ib_client c = { .remove = client_remove };
struct ib_client c = { .remove = remove_one };
return (uintptr_t)c.remove;
return c.remove != NULL;
}
module_init(modinit);