ump_osk_misc.c 1006 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. * Copyright (C) 2010 ARM Limited. All rights reserved.
  3. *
  4. * This program is free software and is provided to you under the terms of the GNU General Public License version 2
  5. * as published by the Free Software Foundation, and any use by you of this program is subject to the terms of such GNU licence.
  6. *
  7. * A copy of the licence is included with the program, and can also be obtained from Free Software
  8. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  9. */
  10. /**
  11. * @file ump_osk_misc.c
  12. * Implementation of the OS abstraction layer for the UMP kernel device driver
  13. */
  14. #include "ump_osk.h"
  15. #include <linux/kernel.h>
  16. #include "ump_kernel_linux.h"
  17. /* is called from ump_kernel_constructor in common code */
  18. _mali_osk_errcode_t _ump_osk_init( void )
  19. {
  20. if (0 != ump_kernel_device_initialize())
  21. {
  22. return _MALI_OSK_ERR_FAULT;
  23. }
  24. return _MALI_OSK_ERR_OK;
  25. }
  26. _mali_osk_errcode_t _ump_osk_term( void )
  27. {
  28. ump_kernel_device_terminate();
  29. return _MALI_OSK_ERR_OK;
  30. }