brintos

brintos / linux-shallow public Read only

0
0
Text · 307 B · bd0a770 Raw
15 lines · plain
1{# SPDX-License-Identifier: GPL-2.0 #}2 3{% if annotate %}4/* enum {{ name }} */5{% endif %}6{% if name in public_apis %}7bool8{% else %}9static bool __maybe_unused10{% endif %}11xdrgen_encode_{{ name }}(struct xdr_stream *xdr, enum {{ name }} value)12{13	return xdr_stream_encode_u32(xdr, value) == XDR_UNIT;14}15