diff options
| author | Ion Agorria <[email protected]> | 2026-01-27 11:32:20 +0200 |
|---|---|---|
| committer | Svyatoslav Ryhel <[email protected]> | 2026-03-20 17:41:53 +0200 |
| commit | 0d26afc4848539fc88fa38f55a15f5d9c1ef9c01 (patch) | |
| tree | a6cbd0583246d12f6c299b1596edc2be028a28c9 | |
| parent | eb1f4fd7190d21d25f7d6130757044ecbc40de3f (diff) | |
ARM: tegra: ap: add default fallback for Tegra20 SKU
Until now all Tegra chips except Tegra20 had a fallback if SKU is not
known. This caused issues previously when certain SKU wasn't known. Add a
fallback for Tegra20 aligning it with other Tegra SoC generations.
Signed-off-by: Ion Agorria <[email protected]>
Signed-off-by: Svyatoslav Ryhel <[email protected]>
| -rw-r--r-- | arch/arm/mach-tegra/ap.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-tegra/ap.c b/arch/arm/mach-tegra/ap.c index ba67cbb1447..4d66de1e937 100644 --- a/arch/arm/mach-tegra/ap.c +++ b/arch/arm/mach-tegra/ap.c @@ -77,6 +77,8 @@ int tegra_get_chip_sku(void) case SKU_ID_AP25E: case SKU_ID_T25E: return TEGRA_SOC_T25; + default: + return TEGRA_SOC_T20; } break; case CHIPID_TEGRA30: |
