mali_kbase_linux.h 967 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. *
  3. * (C) COPYRIGHT 2010-2014 ARM Limited. All rights reserved.
  4. *
  5. * This program is free software and is provided to you under the terms of the
  6. * GNU General Public License version 2 as published by the Free Software
  7. * Foundation, and any use by you of this program is subject to the terms
  8. * of such GNU licence.
  9. *
  10. * A copy of the licence is included with the program, and can also be obtained
  11. * from Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  12. * Boston, MA 02110-1301, USA.
  13. *
  14. */
  15. /**
  16. * @file mali_kbase_linux.h
  17. * Base kernel APIs, Linux implementation.
  18. */
  19. #ifndef _KBASE_LINUX_H_
  20. #define _KBASE_LINUX_H_
  21. /* All things that are needed for the Linux port. */
  22. #include <linux/platform_device.h>
  23. #include <linux/miscdevice.h>
  24. #include <linux/list.h>
  25. #include <linux/module.h>
  26. #include <linux/atomic.h>
  27. #define KBASE_EXPORT_TEST_API(func)
  28. #define KBASE_EXPORT_SYMBOL(func) EXPORT_SYMBOL(func)
  29. #endif // ifndef _KBASE_LINUX_H_