drm/i915/bios: Fix aggressiveness typos

Fix various typos around "aggressiveness". Note that
the VBT spec also sometimes missspells it as
"agressiveness" so I guess that's where some of the typos
came from.

Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220531191844.11313-5-ville.syrjala@linux.intel.com
This commit is contained in:
Ville Syrjälä 2022-05-31 22:18:42 +03:00
parent 6e939738da
commit a9b20eb6f7

View file

@ -856,9 +856,9 @@ struct als_data_entry {
u16 lux;
} __packed;
struct agressiveness_profile_entry {
u8 dpst_agressiveness : 4;
u8 lace_agressiveness : 4;
struct aggressiveness_profile_entry {
u8 dpst_aggressiveness : 4;
u8 lace_aggressiveness : 4;
} __packed;
struct bdb_lfp_power {
@ -873,7 +873,7 @@ struct bdb_lfp_power {
u16 dmrrs;
u16 adb;
u16 lace_enabled_status;
struct agressiveness_profile_entry aggressivenes[16];
struct aggressiveness_profile_entry aggressiveness[16];
u16 hobl; /* 232+ */
u16 vrr_feature_enabled; /* 233+ */
} __packed;