mirror of
https://github.com/SCST-project/scst.git
synced 2026-05-28 09:20:18 +00:00
git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@6426 d57e44dd-8a1f-0410-8b47-8ef2f437770f
14 lines
191 B
C
14 lines
191 B
C
#include <linux/module.h>
|
|
#include <rdma/ib_verbs.h>
|
|
|
|
static int modinit(void)
|
|
{
|
|
struct ib_cq *q;
|
|
|
|
q = ib_create_cq(NULL, NULL, NULL, NULL, NULL);
|
|
|
|
return q != 0;
|
|
}
|
|
|
|
module_init(modinit);
|