mirror of
https://github.com/SCST-project/scst.git
synced 2026-05-17 10:41:26 +00:00
git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@7063 d57e44dd-8a1f-0410-8b47-8ef2f437770f
10 lines
142 B
C
10 lines
142 B
C
#include <linux/module.h>
|
|
#include <rdma/ib_verbs.h>
|
|
|
|
static int modinit(void)
|
|
{
|
|
return (uintptr_t)ib_query_device;
|
|
}
|
|
|
|
module_init(modinit);
|