Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1{# SPDX-License-Identifier: GPL-2.0 #}
2
3{% if annotate %}
4/* enum {{ name }} */
5{% endif %}
6{% if name in public_apis %}
7bool
8{% else %}
9static bool __maybe_unused
10{% endif %}
11xdrgen_encode_{{ name }}(struct xdr_stream *xdr, {{ name }} value)
12{
13 return xdr_stream_encode_u32(xdr, value) == XDR_UNIT;
14}