intel/decoder: Drop gen_field_decode helper

It's unused

Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
This commit is contained in:
Jason Ekstrand 2017-12-12 16:12:16 -08:00
parent 225b198802
commit ada705b671
2 changed files with 0 additions and 11 deletions

View File

@ -1011,14 +1011,6 @@ gen_field_is_header(struct gen_field *field)
return (field->parent->opcode_mask & bits) != 0;
}
void gen_field_decode(struct gen_field *field,
const uint32_t *p, const uint32_t *end,
union gen_field_value *value)
{
uint32_t dword = field->start / 32;
value->u64 = iter_decode_field_raw(field, &p[dword], end);
}
void
gen_print_group(FILE *outfile, struct gen_group *group,
uint64_t offset, const uint32_t *p, bool color)

View File

@ -62,9 +62,6 @@ struct gen_field *gen_group_find_field(struct gen_group *group, const char *name
struct gen_enum *gen_spec_find_enum(struct gen_spec *spec, const char *name);
bool gen_field_is_header(struct gen_field *field);
void gen_field_decode(struct gen_field *field,
const uint32_t *p, const uint32_t *end,
union gen_field_value *value);
struct gen_field_iterator {
struct gen_group *group;