From a816cdc01390a64a814d19d026cc23a0e09ee20b Mon Sep 17 00:00:00 2001 From: "Mathieu J. Poirier" Date: Thu, 8 Dec 2011 09:29:58 -0700 Subject: snowball: android: Upversioning mali driver to V9 This originates from: is12dac198c352df28890265d237f389f5ddda8c35 Signed-off-by: Mathieu Poirier --- .../src/ump/include/ump/ump_kernel_platform.h | 48 ++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 drivers/gpu/mali/mali400ko/driver/src/ump/include/ump/ump_kernel_platform.h (limited to 'drivers/gpu/mali/mali400ko/driver/src/ump/include/ump/ump_kernel_platform.h') diff --git a/drivers/gpu/mali/mali400ko/driver/src/ump/include/ump/ump_kernel_platform.h b/drivers/gpu/mali/mali400ko/driver/src/ump/include/ump/ump_kernel_platform.h new file mode 100644 index 00000000000..1b5af40e963 --- /dev/null +++ b/drivers/gpu/mali/mali400ko/driver/src/ump/include/ump/ump_kernel_platform.h @@ -0,0 +1,48 @@ +/* + * Copyright (C) 2010 ARM Limited. All rights reserved. + * + * This program is free software and is provided to you under the terms of the GNU General Public License version 2 + * as published by the Free Software Foundation, and any use by you of this program is subject to the terms of such GNU licence. + * + * A copy of the licence is included with the program, and can also be obtained from Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + +/** + * @file ump_kernel_platform.h + * + * This file should define UMP_KERNEL_API_EXPORT, + * which dictates how the UMP kernel API should be exported/imported. + * Modify this file, if needed, to match your platform setup. + */ + +#ifndef __UMP_KERNEL_PLATFORM_H__ +#define __UMP_KERNEL_PLATFORM_H__ + +/** @addtogroup ump_kernel_space_api + * @{ */ + +/** + * A define which controls how UMP kernel space API functions are imported and exported. + * This define should be set by the implementor of the UMP API. + */ + +#if defined(_WIN32) + +#if defined(UMP_BUILDING_UMP_LIBRARY) +#define UMP_KERNEL_API_EXPORT __declspec(dllexport) +#else +#define UMP_KERNEL_API_EXPORT __declspec(dllimport) +#endif + +#else + +#define UMP_KERNEL_API_EXPORT + +#endif + + +/** @} */ /* end group ump_kernel_space_api */ + + +#endif /* __UMP_KERNEL_PLATFORM_H__ */ -- cgit v1.2.3