mirror of
https://github.com/CTCaer/switch-l4t-atf.git
synced 2025-02-17 17:19:20 +00:00
imx: Fix multiple definition of ipc_handle
This is not conforming C and does not compile with -fno-common. Signed-off-by: Samuel Holland <samuel@sholland.org> Change-Id: I6535954cc567d6efa06919069b91e3f50975b073
This commit is contained in:
parent
e8bb1c2caa
commit
118a67a9a3
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
|
||||
* Copyright (c) 2015-2019, ARM Limited and Contributors. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
@ -62,6 +62,6 @@ void sc_ipc_read(sc_ipc_t ipc, void *data);
|
||||
*/
|
||||
void sc_ipc_write(sc_ipc_t ipc, void *data);
|
||||
|
||||
sc_ipc_t ipc_handle;
|
||||
extern sc_ipc_t ipc_handle;
|
||||
|
||||
#endif /* SCI_IPC_H */
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
|
||||
* Copyright (c) 2015-2019, ARM Limited and Contributors. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
@ -13,6 +13,8 @@
|
||||
#include <sci/sci_rpc.h>
|
||||
#include "imx8_mu.h"
|
||||
|
||||
sc_ipc_t ipc_handle;
|
||||
|
||||
DEFINE_BAKERY_LOCK(sc_ipc_bakery_lock);
|
||||
#define sc_ipc_lock_init() bakery_lock_init(&sc_ipc_bakery_lock)
|
||||
#define sc_ipc_lock() bakery_lock_get(&sc_ipc_bakery_lock)
|
||||
|
Loading…
x
Reference in New Issue
Block a user