blob: a19e07d11d121746ef24a7bcc22ab754bcc89a44 [file] [log] [blame]
Joerg Roedele3c495c2011-11-09 12:31:15 +01001/*
2 * Copyright (C) 2010-2012 Advanced Micro Devices, Inc.
3 * Author: Joerg Roedel <joerg.roedel@amd.com>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published
7 * by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18
19#include <linux/module.h>
20
21MODULE_LICENSE("GPL v2");
22MODULE_AUTHOR("Joerg Roedel <joerg.roedel@amd.com>");
23
24static int __init amd_iommu_v2_init(void)
25{
26 pr_info("AMD IOMMUv2 driver by Joerg Roedel <joerg.roedel@amd.com>");
27
28 return 0;
29}
30
31static void __exit amd_iommu_v2_exit(void)
32{
33}
34
35module_init(amd_iommu_v2_init);
36module_exit(amd_iommu_v2_exit);