blob: 22fb47ec9b15253c4eb6cef4145fb3cfc49f9188 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* SPDX-License-Identifier: GPL-2.0 */
#ifdef __ASSEMBLER__
/* do nothing here by default */
#else /* __ASSEMBLER__ */
static inline void mmcif_update_progress(int nr)
{
}
#endif /* __ASSEMBLER__ */
|