Ignore:
Timestamp:
Mar 18, 2021, 8:57:36 PM (4 years ago)
Author:
David Azarewicz
Message:

Merge changes from Paul's uniaud32next branch.

Location:
GPL/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • GPL/trunk

  • GPL/trunk/include/linux/compiler.h

    r441 r679  
    114114#define noinline
    115115#endif
     116#define WARN(condition, format,...) { }
     117
     118#define __must_check
     119#define __maybe_unused
     120#define __acquires(x)
     121#define __releases(x)
     122#define BUG() do {} while (1)
     123#define READ_ONCE(x) x
     124#define WRITE_ONCE(x, val) x=(val)
     125#define __force
     126#define __always_unused
     127#define fallthrough                    do {} while (0)  /* fallthrough */
     128#define __builtin_return_address(a)     0
     129#define __builtin_expect(x, expected_value) (x)
    116130
    117131#endif /* __LINUX_COMPILER_H */
Note: See TracChangeset for help on using the changeset viewer.