etnaviv: allow ISA struct to be spelled all uppercase

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/38807>
This commit is contained in:
Eric Engestrom 2025-10-06 11:38:00 +02:00
parent f70d1bcdbf
commit 236b8f081c

View file

@ -36,6 +36,7 @@ pub struct BitsetTemplate<'a> {
/// A structure representing an Instruction Set Architecture (ISA),
/// containing bitsets and enums.
#[expect(clippy::upper_case_acronyms)]
pub struct ISA<'a> {
pub bitsets: IndexMap<&'a str, Bitset<'a>>,
pub enums: IndexMap<&'a str, BitSetEnum<'a>>,