blob: 5d9818587b2381dbd8ee613048e12eaf6e78cdbb (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
/*
* This is just module boilerplate for the iwlmld kunit module.
*
* Copyright (C) 2024 Intel Corporation
*/
#include <linux/module.h>
MODULE_IMPORT_NS("IWLWIFI");
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("kunit tests for iwlmld");
|