22 lines
473 B
C
22 lines
473 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (C) 2011-2015 MediaTek Inc.
|
|
*/
|
|
|
|
#include <linux/module.h> /* needed by all modules */
|
|
#include <mt-plat/sync_write.h>
|
|
#include "sspm_define.h"
|
|
|
|
/* debug API */
|
|
__weak void dump_emi_outstanding(void) {}
|
|
__weak void mtk_spm_dump_debug_info(void) {}
|
|
__weak void usb_dump_debug_register(void) {}
|
|
__weak void dpmaif_dump_reg(void) {}
|
|
|
|
/* platform callback when ipi timeout */
|
|
void sspm_ipi_timeout_cb(int ipi_id)
|
|
{
|
|
|
|
}
|
|
|