mirror of
https://github.com/SCST-project/scst.git
synced 2026-08-15 19:56:19 +00:00
Reported-by: Grant Albitz <Cryptz@Cryptz.com> git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@8866 d57e44dd-8a1f-0410-8b47-8ef2f437770f
16 lines
261 B
C
16 lines
261 B
C
#include <linux/module.h>
|
|
#include <rdma/ib_verbs.h>
|
|
|
|
static void remove_one(struct ib_device *device, void *client_data)
|
|
{
|
|
}
|
|
|
|
static int __init modinit(void)
|
|
{
|
|
struct ib_client c = { .remove = remove_one };
|
|
|
|
return c.remove != NULL;
|
|
}
|
|
|
|
module_init(modinit);
|