mirror of
https://github.com/hardkernel/kernel_common_drivers.git
synced 2026-06-25 12:03:48 +09:00
2c5349ae4c
PD#SWPL-104282 Problem: bringup m4 on sm1 Solution: add bl40 module driver and configuration to bringup m4 Verify: SM1-AC200-S905D3 Change-Id: I39afd0f91a49bd187e23cb29111f06e8c404419d Signed-off-by: Yao Jie <jie.yao@amlogic.com>
18 lines
336 B
C
18 lines
336 B
C
/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
|
|
/*
|
|
* Copyright (c) 2019 Amlogic, Inc. All rights reserved.
|
|
*/
|
|
|
|
#ifndef __BL40_MODULE_H__
|
|
#define __BL40_MODULE_H__
|
|
|
|
#ifdef CONFIG_AMLOGIC_FIRMWARE
|
|
void bl40_rx_msg(void *msg, int size);
|
|
#else
|
|
static inline void bl40_rx_msg(void *msg, int size)
|
|
{
|
|
}
|
|
#endif
|
|
|
|
#endif /*__BL40_MODULE_H__*/
|