]> Git Repo - linux.git/commitdiff
ARM: tegra: add missing break to fuse initialization code
authorStephen Warren <[email protected]>
Fri, 6 Dec 2013 21:31:02 +0000 (14:31 -0700)
committerOlof Johansson <[email protected]>
Thu, 12 Dec 2013 01:09:11 +0000 (17:09 -0800)
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: 3bd1ae57f7bb ("ARM: tegra: add fuses as device randomness")
Signed-off-by: Stephen Warren <[email protected]>
Signed-off-by: Olof Johansson <[email protected]>
arch/arm/mach-tegra/fuse.c

index 9a4e910c3796154c8fa6c167851a8f6b112265f3..3a9c1f1c219dd47bd79ecb1c3bb9f1538abe4463 100644 (file)
@@ -198,10 +198,12 @@ void __init tegra_init_fuse(void)
        switch (tegra_chip_id) {
        case TEGRA20:
                tegra20_fuse_init_randomness();
+               break;
        case TEGRA30:
        case TEGRA114:
        default:
                tegra30_fuse_init_randomness();
+               break;
        }
 
        pr_info("Tegra Revision: %s SKU: %d CPU Process: %d Core Process: %d\n",
This page took 0.064005 seconds and 4 git commands to generate.