mirror of
https://github.com/SCST-project/scst.git
synced 2026-08-20 22:26:23 +00:00
git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@7085 d57e44dd-8a1f-0410-8b47-8ef2f437770f
16 lines
260 B
C
16 lines
260 B
C
#include <linux/module.h>
|
|
#include <rdma/ib_verbs.h>
|
|
|
|
static void client_remove(struct ib_device *dev, void *client_data)
|
|
{
|
|
}
|
|
|
|
static int modinit(void)
|
|
{
|
|
struct ib_client c = { .remove = client_remove };
|
|
|
|
return (uintptr_t)c.remove;
|
|
}
|
|
|
|
module_init(modinit);
|