diff options
| author | Svyatoslav Ryhel <[email protected]> | 2023-02-14 19:35:23 +0200 |
|---|---|---|
| committer | Tom <[email protected]> | 2023-02-23 12:55:36 -0700 |
| commit | fca18a26439037fb6a9e51fbe8cb5155fc79f05e (patch) | |
| tree | e87ab12c458c212d23228eef9f96084769dce3f7 | |
| parent | 8c39999acb726ef083d3d5de12f20318ee0e5070 (diff) | |
tegra30: clock: add EXTPERIPH
This mappings were missing for some reason.
Tested-by: Svyatoslav Ryhel <[email protected]> # LG P895 T30
Signed-off-by: Svyatoslav Ryhel <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Signed-off-by: Tom <[email protected]>
| -rw-r--r-- | arch/arm/include/asm/arch-tegra30/clock-tables.h | 6 | ||||
| -rw-r--r-- | arch/arm/mach-tegra/tegra30/clock.c | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/arch/arm/include/asm/arch-tegra30/clock-tables.h b/arch/arm/include/asm/arch-tegra30/clock-tables.h index 8588009c61d..6c899ff64c8 100644 --- a/arch/arm/include/asm/arch-tegra30/clock-tables.h +++ b/arch/arm/include/asm/arch-tegra30/clock-tables.h @@ -190,9 +190,9 @@ enum periph_id { PERIPH_ID_ACTMON, /* 24 */ - PERIPH_ID_EX_RESERVED24, - PERIPH_ID_EX_RESERVED25, - PERIPH_ID_EX_RESERVED26, + PERIPH_ID_EXTPERIPH1, + PERIPH_ID_EXTPERIPH2, + PERIPH_ID_EXTPERIPH3, PERIPH_ID_EX_RESERVED27, PERIPH_ID_SATA, PERIPH_ID_HDA, diff --git a/arch/arm/mach-tegra/tegra30/clock.c b/arch/arm/mach-tegra/tegra30/clock.c index 449b66e3b2c..04ad5c504dd 100644 --- a/arch/arm/mach-tegra/tegra30/clock.c +++ b/arch/arm/mach-tegra/tegra30/clock.c @@ -377,9 +377,9 @@ static s8 periph_id_to_internal_id[PERIPH_ID_COUNT] = { PERIPHC_ACTMON, /* 24 */ - NONE(RESERVED24), - NONE(RESERVED25), - NONE(RESERVED26), + PERIPHC_EXTPERIPH1, + PERIPHC_EXTPERIPH2, + PERIPHC_EXTPERIPH3, NONE(RESERVED27), PERIPHC_SATA, PERIPHC_HDA, |
