Merge "arm64: cpu_errata: Allow an erratum to be match for all revisions of a core"

This commit is contained in:
Linux Build Service Account 2018-02-08 19:03:38 -08:00 committed by Gerrit - the friendly Code Review server
commit bb4e15efef

View file

@ -111,6 +111,12 @@ static void __maybe_unused install_bp_hardening_cb(
.midr_range_min = min, \
.midr_range_max = max
#define MIDR_ALL_VERSIONS(model) \
.matches = is_affected_midr_range, \
.midr_model = model, \
.midr_range_min = 0, \
.midr_range_max = (MIDR_VARIANT_MASK | MIDR_REVISION_MASK)
const struct arm64_cpu_capabilities arm64_errata[] = {
#if defined(CONFIG_ARM64_ERRATUM_826319) || \
defined(CONFIG_ARM64_ERRATUM_827319) || \