1277302Shselasky/*-
2277302Shselasky * Copyright (c) 2015 Mellanox Technologies, Ltd.
3277302Shselasky * All rights reserved.
4277302Shselasky *
5277302Shselasky * Redistribution and use in source and binary forms, with or without
6277302Shselasky * modification, are permitted provided that the following conditions
7277302Shselasky * are met:
8277302Shselasky * 1. Redistributions of source code must retain the above copyright
9277302Shselasky *    notice unmodified, this list of conditions, and the following
10277302Shselasky *    disclaimer.
11277302Shselasky * 2. Redistributions in binary form must reproduce the above copyright
12277302Shselasky *    notice, this list of conditions and the following disclaimer in the
13277302Shselasky *    documentation and/or other materials provided with the distribution.
14277302Shselasky *
15277302Shselasky * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16277302Shselasky * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17277302Shselasky * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18277302Shselasky * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19277302Shselasky * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20277302Shselasky * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21277302Shselasky * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22277302Shselasky * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23277302Shselasky * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24277302Shselasky * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25277302Shselasky */
26277302Shselasky
27289644Shselasky#include <sys/cdefs.h>
28289644Shselasky__FBSDID("$FreeBSD: releng/11.0/sys/compat/linuxkpi/common/src/linux_kmod.c 290135 2015-10-29 08:28:39Z hselasky $");
29289644Shselasky
30277302Shselasky#include <sys/param.h>
31277302Shselasky#include <sys/module.h>
32277302Shselasky
33289749ShselaskyMODULE_VERSION(linuxkpi, 1);
34289749ShselaskyMODULE_DEPEND(linuxkpi, pci, 1, 1, 1);
35277302Shselasky
36