blob: a2737171371195af712ab092556d314751ec5517 [file] [log] [blame]
/*
* Copyright (C) 2018 MediaTek Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See http://www.gnu.org/licenses/gpl-2.0.html for more details.
*/
#include <mali_kbase_config.h>
int kbase_platform_early_init(void)
{
/* Nothing needed at this stage */
return 0;
}
static struct kbase_platform_config dummy_platform_config;
struct kbase_platform_config *kbase_get_platform_config(void)
{
return &dummy_platform_config;
}
int kbase_platform_register(void)
{
return 0;
}
void kbase_platform_unregister(void)
{
}