Joerg Roedel | e3c495c | 2011-11-09 12:31:15 +0100 | [diff] [blame^] | 1 | /* |
| 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 | |
| 21 | MODULE_LICENSE("GPL v2"); |
| 22 | MODULE_AUTHOR("Joerg Roedel <joerg.roedel@amd.com>"); |
| 23 | |
| 24 | static 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 | |
| 31 | static void __exit amd_iommu_v2_exit(void) |
| 32 | { |
| 33 | } |
| 34 | |
| 35 | module_init(amd_iommu_v2_init); |
| 36 | module_exit(amd_iommu_v2_exit); |