amd_iommu_v2.c 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  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. #include <linux/module.h>
  19. MODULE_LICENSE("GPL v2");
  20. MODULE_AUTHOR("Joerg Roedel <joerg.roedel@amd.com>");
  21. static int __init amd_iommu_v2_init(void)
  22. {
  23. pr_info("AMD IOMMUv2 driver by Joerg Roedel <joerg.roedel@amd.com>");
  24. return 0;
  25. }
  26. static void __exit amd_iommu_v2_exit(void)
  27. {
  28. }
  29. module_init(amd_iommu_v2_init);
  30. module_exit(amd_iommu_v2_exit);