mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-22 15:38:11 +00:00
fix usage of inline/static
This commit is contained in:
parent
28651bd966
commit
7675a0aa5f
@ -139,7 +139,7 @@ static uint8_t msg_debug_out[MSG_DEBUG_OUT_SIZE];
|
|||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
inline void msg_out_append(uint8_t c)
|
static inline void msg_out_append(uint8_t c)
|
||||||
{
|
{
|
||||||
if (msg_out_cur == 0) {
|
if (msg_out_cur == 0) {
|
||||||
msg_out[msg_out_end * 64] = '?';
|
msg_out[msg_out_end * 64] = '?';
|
||||||
@ -155,7 +155,7 @@ inline void msg_out_append(uint8_t c)
|
|||||||
|
|
||||||
#if DEBUG_LINK
|
#if DEBUG_LINK
|
||||||
|
|
||||||
inline void msg_debug_out_append(uint8_t c)
|
static inline void msg_debug_out_append(uint8_t c)
|
||||||
{
|
{
|
||||||
if (msg_debug_out_cur == 0) {
|
if (msg_debug_out_cur == 0) {
|
||||||
msg_debug_out[msg_debug_out_end * 64] = '?';
|
msg_debug_out[msg_debug_out_end * 64] = '?';
|
||||||
@ -171,7 +171,7 @@ inline void msg_debug_out_append(uint8_t c)
|
|||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
inline void msg_out_pad(void)
|
static inline void msg_out_pad(void)
|
||||||
{
|
{
|
||||||
if (msg_out_cur == 0) return;
|
if (msg_out_cur == 0) return;
|
||||||
while (msg_out_cur < 64) {
|
while (msg_out_cur < 64) {
|
||||||
|
Loading…
Reference in New Issue
Block a user