Commit b988ba1b authored by Stephen Warren's avatar Stephen Warren Committed by Olof Johansson

ARM: tegra: add missing break to fuse initialization code

Add a missing break to the switch in tegra_init_fuse() which determines
which SoC the code is running on. This prevents the Tegra30+ fuse
handling code from running on Tegra20.

Fixes: 3bd1ae57 ("ARM: tegra: add fuses as device randomness")
Signed-off-by: default avatarStephen Warren <swarren@nvidia.com>
Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
parent ff88b472
...@@ -198,10 +198,12 @@ void __init tegra_init_fuse(void) ...@@ -198,10 +198,12 @@ void __init tegra_init_fuse(void)
switch (tegra_chip_id) { switch (tegra_chip_id) {
case TEGRA20: case TEGRA20:
tegra20_fuse_init_randomness(); tegra20_fuse_init_randomness();
break;
case TEGRA30: case TEGRA30:
case TEGRA114: case TEGRA114:
default: default:
tegra30_fuse_init_randomness(); tegra30_fuse_init_randomness();
break;
} }
pr_info("Tegra Revision: %s SKU: %d CPU Process: %d Core Process: %d\n", pr_info("Tegra Revision: %s SKU: %d CPU Process: %d Core Process: %d\n",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment